Procurify · Schema

UnoptimizedAccountCodeserializer

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

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

JSON Schema

unoptimizedaccountcodeserializer.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UnoptimizedAccountCodeserializer",
  "type": "object",
  "properties": {
    "id": {
      "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": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Nested"
        }
      ],
      "readOnly": true
    }
  },
  "required": [
    "code",
    "description"
  ]
}