Avalara · Schema

DocumentStatus

Taxes

Properties

Name Type Description
id string
status string
statusDate string
events array
View JSON Schema on GitHub

JSON Schema

avalara-documentstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentStatus",
  "title": "DocumentStatus",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Pending",
        "Accepted",
        "Rejected",
        "Error"
      ]
    },
    "statusDate": {
      "type": "string",
      "format": "date-time"
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DocumentEvent"
      }
    }
  }
}