Procurify · Schema

CustomFieldRead

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
name string
content_type integer
default_value string
is_required boolean
field_choices array
field_type object
field_label string
is_active boolean
View JSON Schema on GitHub

JSON Schema

customfieldread.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CustomFieldRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 200
    },
    "content_type": {
      "type": "integer"
    },
    "default_value": {
      "type": "string",
      "maxLength": 5000
    },
    "is_required": {
      "type": "boolean"
    },
    "field_choices": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "readOnly": true
    },
    "field_type": {
      "$ref": "#/components/schemas/FieldTypeEnum"
    },
    "field_label": {
      "type": "string",
      "readOnly": true
    },
    "is_active": {
      "type": "boolean",
      "readOnly": true
    }
  },
  "required": [
    "content_type",
    "name"
  ]
}