Shell · Schema

TransactionListResponse

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

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

JSON Schema

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