Apideck · Schema

LinkedTaxStatusDetail

IntegrationsUnified API

Properties

Name Type Description
country string The country of the tax status.
transaction_tax_status string The transaction tax status.
View JSON Schema on GitHub

JSON Schema

apideck-linkedtaxstatusdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkedTaxStatusDetail",
  "title": "LinkedTaxStatusDetail",
  "type": "object",
  "x-apideck-schema-id": "LinkedTaxStatusDetail",
  "x-apideck-weights": {
    "country": "critical",
    "transaction_tax_status": "critical"
  },
  "nullable": true,
  "properties": {
    "country": {
      "type": "string",
      "title": "Country",
      "description": "The country of the tax status.",
      "example": "US"
    },
    "transaction_tax_status": {
      "type": "string",
      "title": "Transaction Tax Status",
      "description": "The transaction tax status.",
      "example": "taxable",
      "nullable": true
    }
  }
}