Procurify · Schema

AccountCodeRead

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
applied_accounts_count integer
code string
code_length integer
description string
account_type object
active boolean
parent integer
View JSON Schema on GitHub

JSON Schema

accountcoderead.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AccountCodeRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "applied_accounts_count": {
      "type": "integer",
      "readOnly": true
    },
    "code": {
      "type": "string",
      "maxLength": 50
    },
    "code_length": {
      "type": "integer",
      "maximum": 2147483647,
      "minimum": -2147483648
    },
    "description": {
      "type": "string",
      "maxLength": 200
    },
    "account_type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountTypeEnum"
        }
      ],
      "minimum": -2147483648,
      "maximum": 2147483647
    },
    "active": {
      "type": "boolean"
    },
    "parent": {
      "type": "integer",
      "nullable": true
    }
  },
  "required": [
    "code",
    "description"
  ]
}