Avalara · Schema

InteropDocumentRequest

InteropDocumentRequest schema from Avalara API

Taxes

Properties

Name Type Description
dataFormat string
data string
recipientIdentifier string Recipient identifier on the interop network
recipientIdentifierScheme string Identifier scheme (e.g., peppol)
View JSON Schema on GitHub

JSON Schema

e-invoicing-interop-document-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/e-invoicing-interop-document-request-schema.json",
  "title": "InteropDocumentRequest",
  "description": "InteropDocumentRequest schema from Avalara API",
  "type": "object",
  "required": [
    "dataFormat",
    "data",
    "recipientIdentifier"
  ],
  "properties": {
    "dataFormat": {
      "type": "string"
    },
    "data": {
      "type": "string"
    },
    "recipientIdentifier": {
      "type": "string",
      "description": "Recipient identifier on the interop network"
    },
    "recipientIdentifierScheme": {
      "type": "string",
      "description": "Identifier scheme (e.g., peppol)"
    }
  }
}