Avalara · Schema

FilingSubmission

Taxes

Properties

Name Type Description
taxYear integer
formIds array
corrected boolean
View JSON Schema on GitHub

JSON Schema

avalara-filingsubmission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FilingSubmission",
  "title": "FilingSubmission",
  "type": "object",
  "required": [
    "taxYear",
    "formIds"
  ],
  "properties": {
    "taxYear": {
      "type": "integer"
    },
    "formIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "corrected": {
      "type": "boolean",
      "default": false
    }
  }
}