Avalara · Schema

FilingSubmission

FilingSubmission schema from Avalara API

Taxes

Properties

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

JSON Schema

1099-w9-filing-submission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/1099-w9-filing-submission-schema.json",
  "title": "FilingSubmission",
  "description": "FilingSubmission schema from Avalara API",
  "type": "object",
  "required": [
    "taxYear",
    "formIds"
  ],
  "properties": {
    "taxYear": {
      "type": "integer"
    },
    "formIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "corrected": {
      "type": "boolean",
      "default": false
    }
  }
}