SAP Ariba · Schema

RequisitionCreate

Request body for creating a new requisition

B2BContract ManagementProcurementSourcingSpend AnalysisSupplier ManagementSupply Chain

Properties

Name Type Description
title string
needByDate string
companyCode string
lineItems array
comments string
View JSON Schema on GitHub

JSON Schema

sap-ariba-requisitioncreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequisitionCreate",
  "title": "RequisitionCreate",
  "type": "object",
  "description": "Request body for creating a new requisition",
  "required": [
    "title",
    "lineItems"
  ],
  "properties": {
    "title": {
      "type": "string",
      "example": "Example Title"
    },
    "needByDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "companyCode": {
      "type": "string",
      "example": "example_value"
    },
    "lineItems": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PurchaseOrderLineItem"
      },
      "minItems": 1,
      "example": []
    },
    "comments": {
      "type": "string",
      "example": "example_value"
    }
  }
}