Unified.to · Schema

AccountingTaxrate

IntegrationsUnified API

Properties

Name Type Description
created_at string
description string
id string
is_active boolean
name string
organization_id string
rate number
raw object
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-accountingtaxrate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingTaxrate",
  "title": "AccountingTaxrate",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "organization_id": {
      "type": "string"
    },
    "rate": {
      "type": "number"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}