Procurify · Schema

TransactionCustomField

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
name string
value string
type object
View JSON Schema on GitHub

JSON Schema

transactioncustomfield.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransactionCustomField",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TransactionCustomFieldTypeEnum"
        }
      ],
      "readOnly": true
    }
  },
  "required": [
    "name",
    "value"
  ]
}