Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| cnpj | string | Company tax ID (CNPJ) |
| cpf | string | Individual tax ID (CPF) |
| stateRegistration | string | Inscricao Estadual |
| municipalRegistration | string | Inscricao Municipal |
| address | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BrazilParty",
"title": "BrazilParty",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"cnpj": {
"type": "string",
"description": "Company tax ID (CNPJ)"
},
"cpf": {
"type": "string",
"description": "Individual tax ID (CPF)"
},
"stateRegistration": {
"type": "string",
"description": "Inscricao Estadual"
},
"municipalRegistration": {
"type": "string",
"description": "Inscricao Municipal"
},
"address": {
"type": "object",
"properties": {
"street": {
"type": "string"
},
"number": {
"type": "string"
},
"complement": {
"type": "string"
},
"neighborhood": {
"type": "string"
},
"city": {
"type": "string"
},
"cityCode": {
"type": "string",
"description": "IBGE city code"
},
"state": {
"type": "string",
"description": "State code (UF)"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string"
}
}
}
}
}