Shell · Schema

ProductListResponse

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

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

JSON Schema

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