Shell · Schema

PointsBalance

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

Name Type Description
accountId string
totalPoints integer
redeemablePoints integer
pendingPoints integer
expiringPoints integer
expiryDate string
tier string
lastUpdated string
View JSON Schema on GitHub

JSON Schema

shell-pointsbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PointsBalance",
  "title": "PointsBalance",
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string"
    },
    "totalPoints": {
      "type": "integer"
    },
    "redeemablePoints": {
      "type": "integer"
    },
    "pendingPoints": {
      "type": "integer"
    },
    "expiringPoints": {
      "type": "integer"
    },
    "expiryDate": {
      "type": "string",
      "format": "date"
    },
    "tier": {
      "type": "string"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time"
    }
  }
}