{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/certcapture-certificate-schema.json", "title": "Certificate", "description": "Certificate schema from Avalara API", "type": "object", "properties": { "id": { "type": "string" }, "certificateNumber": { "type": "string" }, "status": { "type": "string", "enum": [ "Active", "Expired", "Revoked", "Pending" ] }, "signedDate": { "type": "string", "format": "date" }, "expirationDate": { "type": "string", "format": "date" }, "exemptionNumber": { "type": "string" }, "exemptionReason": { "type": "string" }, "exemptPercentage": { "type": "number", "format": "double" }, "exposureZone": { "type": "string", "description": "Jurisdiction where the exemption applies" }, "customer": { "$ref": "#/components/schemas/CertCaptureCustomer" }, "createdDate": { "type": "string", "format": "date-time" }, "modifiedDate": { "type": "string", "format": "date-time" } } }