Shell · Schema

SiteListResponse

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

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

JSON Schema

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