Avalara · JSON Structure

Certcapture Certificate Structure

Certificate schema from Avalara API

Type: object Properties: 12
Taxes

Certificate is a JSON Structure definition published by Avalara, describing 12 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id certificateNumber status signedDate expirationDate exemptionNumber exemptionReason exemptPercentage exposureZone customer createdDate modifiedDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-structure/certcapture-certificate-structure.json",
  "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": "date"
    },
    "expirationDate": {
      "type": "date"
    },
    "exemptionNumber": {
      "type": "string"
    },
    "exemptionReason": {
      "type": "string"
    },
    "exemptPercentage": {
      "type": "double"
    },
    "exposureZone": {
      "type": "string",
      "description": "Jurisdiction where the exemption applies"
    },
    "customer": {
      "$ref": "#/components/schemas/CertCaptureCustomer"
    },
    "createdDate": {
      "type": "datetime"
    },
    "modifiedDate": {
      "type": "datetime"
    }
  },
  "name": "Certificate"
}