Procurify · Schema

CustomFieldValueRead

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
value object Given the *incoming* primitive data, return the value for this field that should be validated and transformed to a native value.
field object
View JSON Schema on GitHub

JSON Schema

customfieldvalueread.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CustomFieldValueRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "value": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "boolean"
        }
      ],
      "description": "Given the *incoming* primitive data, return the value for this field\nthat should be validated and transformed to a native value.",
      "readOnly": true
    },
    "field": {
      "$ref": "#/components/schemas/CustomFieldRead"
    }
  },
  "required": [
    "field"
  ]
}