Avalara · Schema

FilingResponse

Taxes

Properties

Name Type Description
filingId string
status string
formCount integer
submittedDate string
View JSON Schema on GitHub

JSON Schema

avalara-filingresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FilingResponse",
  "title": "FilingResponse",
  "type": "object",
  "properties": {
    "filingId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Accepted",
        "Processing",
        "Rejected"
      ]
    },
    "formCount": {
      "type": "integer"
    },
    "submittedDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}