Shell · Schema

RedemptionRequest

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

Name Type Description
rewardId string
pointsToRedeem integer
deliveryMethod string
deliveryAddress object
View JSON Schema on GitHub

JSON Schema

shell-redemptionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RedemptionRequest",
  "title": "RedemptionRequest",
  "type": "object",
  "required": [
    "rewardId",
    "pointsToRedeem"
  ],
  "properties": {
    "rewardId": {
      "type": "string"
    },
    "pointsToRedeem": {
      "type": "integer"
    },
    "deliveryMethod": {
      "type": "string"
    },
    "deliveryAddress": {
      "type": "object"
    }
  }
}