Procurify · Schema

LineItemCustomFieldRequest

Serializer used when custom fields are provided in a request. E.g JSON request with: "custom_fields": [ { "custom_field_name": "string", "custom_field_value": "string" }, ... ]

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
custom_field_name string
custom_field_value string
View JSON Schema on GitHub

JSON Schema

lineitemcustomfieldrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LineItemCustomFieldRequest",
  "type": "object",
  "description": "Serializer used when custom fields are provided in a request. E.g JSON request with:\n\"custom_fields\": [\n    {\n    \"custom_field_name\": \"string\",\n    \"custom_field_value\": \"string\"\n    },\n    ...\n]",
  "properties": {
    "custom_field_name": {
      "type": "string",
      "minLength": 1
    },
    "custom_field_value": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "custom_field_name",
    "custom_field_value"
  ]
}