Procurify · Schema

TransactionAccount

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
account_code string
account_code_description string
department string
department_branch string
View JSON Schema on GitHub

JSON Schema

transactionaccount.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransactionAccount",
  "type": "object",
  "properties": {
    "account_code": {
      "type": "string"
    },
    "account_code_description": {
      "type": "string"
    },
    "department": {
      "type": "string"
    },
    "department_branch": {
      "type": "string"
    }
  },
  "required": [
    "account_code",
    "account_code_description",
    "department",
    "department_branch"
  ]
}