Avalara · Schema

FilingStatus

Taxes

Properties

Name Type Description
filingId string
status string
acceptedCount integer
rejectedCount integer
errors array
View JSON Schema on GitHub

JSON Schema

avalara-filingstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FilingStatus",
  "title": "FilingStatus",
  "type": "object",
  "properties": {
    "filingId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Processing",
        "Accepted",
        "AcceptedWithErrors",
        "Rejected"
      ]
    },
    "acceptedCount": {
      "type": "integer"
    },
    "rejectedCount": {
      "type": "integer"
    },
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "formId": {
            "type": "string"
          },
          "errorCode": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    }
  }
}