Every business has a Tax Office Data resource that contains information about the local tax office. In Chile it's called SII
The Tax Office Data object is composed by the local tax office. In Chile it corresponds to the SII, in Mexico to the SAT.
The TaxOfficeData Object
Property | Type | Description |
has_activity_initiation | Boolean | True if the business is registered in the tax office. |
activity_initiation_date | Date | date when the business was registered in the local tax office. ISO 3166-1 date. |
can_tax_in_foreign_money | Boolean | True if the business can tax in foreign currency |
is_small_enterprise | Boolean | ISO 8601 |
sales_segment | String | The sale segment to which the business belongs. More information: https://www.sii.cl/sobre_el_sii/estadisticas_de_empresas.html |
activities | Array | Activities that the business registered in the tax office |
Each Activity is an object with the following data
Property | Type | Description |
code | String | Legal code of the activity |
date | Date | Date when the activity was registered |
name | String | Name of the activity |
exempt | Boolean | True if this activity is tax free |
category | Integer | Tax category of the activity |
The complete JSON representation of the resource
{
"tax_office_data": {
"has_activity_initiation": true,
"activity_initiation_date": "2021-08-15",
"can_tax_in_foreign_money": false,
"sales_segment": "8",
"is_small_enterprise": true,
"activities": [
{
"code": "251100",
"date": "2021-08-15",
"name": "FABRICACION DE PRODUCTOS METALICOS PARA USO ESTRUCTURAL",
"exempt": false,
"category": 1
},
{
"code": "251209",
"date": "2021-08-15",
"name": "FABRICACION DE TANQUES, DEPOSITOS Y RECIPIENTES DE METAL N.C.P.",
"exempt": false,
"category": 1
}
]
}
}