Procurify · Schema

RequisitionCreateRequest

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
required_date string
location_name string
department_name string
line_items array
View JSON Schema on GitHub

JSON Schema

requisitioncreaterequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RequisitionCreateRequest",
  "type": "object",
  "properties": {
    "required_date": {
      "type": "string",
      "format": "date"
    },
    "location_name": {
      "type": "string",
      "minLength": 1
    },
    "department_name": {
      "type": "string",
      "minLength": 1
    },
    "line_items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RequisitionLineCreateRequest"
      }
    }
  },
  "required": [
    "department_name",
    "line_items",
    "location_name",
    "required_date"
  ]
}