Shell · Schema
Site
AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy
Properties
| Name | Type | Description |
|---|---|---|
| siteId | string | |
| siteName | string | |
| siteCode | string | |
| address | object | |
| location | object | |
| fuelTypes | array | |
| evCharging | boolean | |
| evChargingPoints | integer | |
| amenities | array | |
| openingHours | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Site",
"title": "Site",
"type": "object",
"properties": {
"siteId": {
"type": "string"
},
"siteName": {
"type": "string"
},
"siteCode": {
"type": "string"
},
"address": {
"type": "object",
"properties": {
"street": {
"type": "string"
},
"city": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string"
}
}
},
"location": {
"type": "object",
"properties": {
"latitude": {
"type": "number",
"format": "float"
},
"longitude": {
"type": "number",
"format": "float"
}
}
},
"fuelTypes": {
"type": "array",
"items": {
"type": "string"
}
},
"evCharging": {
"type": "boolean"
},
"evChargingPoints": {
"type": "integer"
},
"amenities": {
"type": "array",
"items": {
"type": "string"
}
},
"openingHours": {
"type": "object"
}
}
}