Avalara · JSON Structure

Certcapture Certificate Create Request Structure

CertificateCreateRequest schema from Avalara API

Type: object Properties: 8 Required: 2
Taxes

CertificateCreateRequest is a JSON Structure definition published by Avalara, describing 8 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

exemptionNumber exemptionReason exposureZone signedDate expirationDate exemptPercentage customerCode attributes

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-create-request-structure.json",
  "description": "CertificateCreateRequest schema from Avalara API",
  "type": "object",
  "required": [
    "exemptionReason",
    "exposureZone"
  ],
  "properties": {
    "exemptionNumber": {
      "type": "string"
    },
    "exemptionReason": {
      "type": "string"
    },
    "exposureZone": {
      "type": "string"
    },
    "signedDate": {
      "type": "date"
    },
    "expirationDate": {
      "type": "date"
    },
    "exemptPercentage": {
      "type": "double"
    },
    "customerCode": {
      "type": "string"
    },
    "attributes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CertAttribute"
      }
    }
  },
  "name": "CertificateCreateRequest"
}