Procurify · Schema

SpendAccountRead

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
account_code object
department object
active boolean
View JSON Schema on GitHub

JSON Schema

spendaccountread.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SpendAccountRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "account_code": {
      "$ref": "#/components/schemas/UnoptimizedAccountCodeserializer"
    },
    "department": {
      "$ref": "#/components/schemas/UnoptimizedDepartmentRead"
    },
    "active": {
      "type": "boolean"
    }
  },
  "required": [
    "account_code",
    "department"
  ]
}