Avalara · Schema

W9Request

W9Request schema from Avalara API

Taxes

Properties

Name Type Description
payeeEmail string
payeeName string
companyId string
expirationDays integer
message string
View JSON Schema on GitHub

JSON Schema

1099-w9-w9-request-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-w9-request-schema.json",
  "title": "W9Request",
  "description": "W9Request schema from Avalara API",
  "type": "object",
  "required": [
    "payeeEmail",
    "payeeName"
  ],
  "properties": {
    "payeeEmail": {
      "type": "string",
      "format": "email"
    },
    "payeeName": {
      "type": "string"
    },
    "companyId": {
      "type": "string"
    },
    "expirationDays": {
      "type": "integer",
      "default": 30
    },
    "message": {
      "type": "string"
    }
  }
}