SAP Ariba · Schema

InvoiceListResponse

Paginated list of invoices

B2BContract ManagementProcurementSourcingSpend AnalysisSupplier ManagementSupply Chain

Properties

Name Type Description
totalCount integer Total number of matching invoices
skip integer Number of records skipped
limit integer Maximum records per page
invoices array
View JSON Schema on GitHub

JSON Schema

sap-ariba-invoicelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceListResponse",
  "title": "InvoiceListResponse",
  "type": "object",
  "description": "Paginated list of invoices",
  "properties": {
    "totalCount": {
      "type": "integer",
      "description": "Total number of matching invoices",
      "example": 10
    },
    "skip": {
      "type": "integer",
      "description": "Number of records skipped",
      "example": 10
    },
    "limit": {
      "type": "integer",
      "description": "Maximum records per page",
      "example": 10
    },
    "invoices": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Invoice"
      },
      "example": []
    }
  }
}