Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| companyId | integer | |
| signedDate | string | |
| expirationDate | string | |
| exemptionNumber | string | |
| exemptPercentage | number | |
| exemptionReason | object | |
| status | string | |
| createdDate | string | |
| modifiedDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/avatax-rest-certificate-model-schema.json",
"title": "CertificateModel",
"description": "CertificateModel schema from Avalara API",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"companyId": {
"type": "integer"
},
"signedDate": {
"type": "string",
"format": "date"
},
"expirationDate": {
"type": "string",
"format": "date"
},
"exemptionNumber": {
"type": "string"
},
"exemptPercentage": {
"type": "number",
"format": "double"
},
"exemptionReason": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
}
},
"status": {
"type": "string"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"modifiedDate": {
"type": "string",
"format": "date-time"
}
}
}