Shell · Schema

InvoiceListResponse

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

Name Type Description
invoices array
totalCount integer
currentPage integer
pageCount integer
View JSON Schema on GitHub

JSON Schema

shell-invoicelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceListResponse",
  "title": "InvoiceListResponse",
  "type": "object",
  "properties": {
    "invoices": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Invoice"
      }
    },
    "totalCount": {
      "type": "integer"
    },
    "currentPage": {
      "type": "integer"
    },
    "pageCount": {
      "type": "integer"
    }
  }
}