Unified.to · Schema

AccountingAccountTaxonomy

IntegrationsUnified API

Properties

Name Type Description
original_type string
type string
value string
View JSON Schema on GitHub

JSON Schema

unified-to-accountingaccounttaxonomy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingAccountTaxonomy",
  "title": "AccountingAccountTaxonomy",
  "properties": {
    "original_type": {
      "type": "string"
    },
    "type": {
      "enum": [
        "CLASSIFICATION",
        "GROUP",
        "SUBGROUP",
        "SYSTEM_ROLE",
        "OTHER"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "type",
    "value"
  ],
  "type": "object"
}