SAP Ariba · Schema

Receipt

A goods receipt or service confirmation recorded against a purchase order

B2BContract ManagementProcurementSourcingSpend AnalysisSupplier ManagementSupply Chain

Properties

Name Type Description
receiptId string Unique receipt identifier
purchaseOrderId string Reference to the purchase order
receiptDate string Date goods were received or services confirmed
receiptType string Type of receipt
status string
lineItems array
createdDate string
createdBy string User who created the receipt
View JSON Schema on GitHub

JSON Schema

sap-ariba-procurement-receipt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Receipt",
  "type": "object",
  "description": "A goods receipt or service confirmation recorded against a purchase order",
  "properties": {
    "receiptId": {
      "type": "string",
      "description": "Unique receipt identifier"
    },
    "purchaseOrderId": {
      "type": "string",
      "description": "Reference to the purchase order"
    },
    "receiptDate": {
      "type": "string",
      "description": "Date goods were received or services confirmed"
    },
    "receiptType": {
      "type": "string",
      "description": "Type of receipt"
    },
    "status": {
      "type": "string"
    },
    "lineItems": {
      "type": "array"
    },
    "createdDate": {
      "type": "string"
    },
    "createdBy": {
      "type": "string",
      "description": "User who created the receipt"
    }
  }
}