Shell · Schema

AccountEnrollRequest

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

Name Type Description
externalId string
firstName string
lastName string
email string
phone string
dateOfBirth string
countryCode string
marketingConsent boolean
View JSON Schema on GitHub

JSON Schema

shell-accountenrollrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountEnrollRequest",
  "title": "AccountEnrollRequest",
  "type": "object",
  "required": [
    "firstName",
    "lastName",
    "email"
  ],
  "properties": {
    "externalId": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "dateOfBirth": {
      "type": "string",
      "format": "date"
    },
    "countryCode": {
      "type": "string"
    },
    "marketingConsent": {
      "type": "boolean"
    }
  }
}