Shell · Schema
LoyaltyAccount
AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy
Properties
| Name | Type | Description |
|---|---|---|
| accountId | string | |
| externalId | string | Partner-provided customer identifier |
| status | string | |
| tier | string | |
| firstName | string | |
| lastName | string | |
| string | ||
| phone | string | |
| dateOfBirth | string | |
| createdAt | string | |
| updatedAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LoyaltyAccount",
"title": "LoyaltyAccount",
"type": "object",
"properties": {
"accountId": {
"type": "string"
},
"externalId": {
"type": "string",
"description": "Partner-provided customer identifier"
},
"status": {
"type": "string",
"enum": [
"Active",
"Inactive",
"Suspended"
]
},
"tier": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"email": {
"type": "string"
},
"phone": {
"type": "string"
},
"dateOfBirth": {
"type": "string",
"format": "date"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
}
}
}