Shell · Schema

CardOrderRequest

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

Name Type Description
colCoCode integer
payerNumber string
accountNumber string
driverName string
vehicleRegistration string
cardType string
embossText string
View JSON Schema on GitHub

JSON Schema

shell-cardorderrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CardOrderRequest",
  "title": "CardOrderRequest",
  "type": "object",
  "required": [
    "colCoCode",
    "accountNumber"
  ],
  "properties": {
    "colCoCode": {
      "type": "integer"
    },
    "payerNumber": {
      "type": "string"
    },
    "accountNumber": {
      "type": "string"
    },
    "driverName": {
      "type": "string"
    },
    "vehicleRegistration": {
      "type": "string"
    },
    "cardType": {
      "type": "string"
    },
    "embossText": {
      "type": "string"
    }
  }
}