Coupa · Schema

RequisitionUpdate

Schema for updating a requisition

BSMBusiness Spend ManagementCloud PlatformEnterpriseFinancial ManagementInvoicingProcurementSupply Chain

Properties

Name Type Description
req_title string
currency object
department object
ship-to-address object
ship-to-attention string
need-by-date string
justification string
buyer-note string
external-po-reference string
hide-price boolean
requisition-lines array
exported boolean
View JSON Schema on GitHub

JSON Schema

coupa-requisitionupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequisitionUpdate",
  "title": "RequisitionUpdate",
  "type": "object",
  "description": "Schema for updating a requisition",
  "properties": {
    "req_title": {
      "type": "string",
      "maxLength": 50
    },
    "currency": {
      "$ref": "#/components/schemas/CurrencyReference"
    },
    "department": {
      "$ref": "#/components/schemas/DepartmentReference"
    },
    "ship-to-address": {
      "$ref": "#/components/schemas/AddressReference"
    },
    "ship-to-attention": {
      "type": "string",
      "maxLength": 255
    },
    "need-by-date": {
      "type": "string",
      "format": "date-time"
    },
    "justification": {
      "type": "string"
    },
    "buyer-note": {
      "type": "string"
    },
    "external-po-reference": {
      "type": "string",
      "maxLength": 255
    },
    "hide-price": {
      "type": "boolean"
    },
    "requisition-lines": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RequisitionLine"
      }
    },
    "exported": {
      "type": "boolean"
    }
  }
}