SAP Ariba · Schema

ReceiptListResponse

Paginated list of receipts

B2BContract ManagementProcurementSourcingSpend AnalysisSupplier ManagementSupply Chain

Properties

Name Type Description
totalCount integer
skip integer
limit integer
receipts array
View JSON Schema on GitHub

JSON Schema

sap-ariba-receiptlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReceiptListResponse",
  "title": "ReceiptListResponse",
  "type": "object",
  "description": "Paginated list of receipts",
  "properties": {
    "totalCount": {
      "type": "integer",
      "example": 10
    },
    "skip": {
      "type": "integer",
      "example": 10
    },
    "limit": {
      "type": "integer",
      "example": 10
    },
    "receipts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Receipt"
      },
      "example": []
    }
  }
}