Shell · Schema

CardLimitUpdateRequest

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

Name Type Description
colCoCode integer
payerNumber string
accountNumber string
cardId string
limits array
View JSON Schema on GitHub

JSON Schema

shell-cardlimitupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CardLimitUpdateRequest",
  "title": "CardLimitUpdateRequest",
  "type": "object",
  "required": [
    "colCoCode",
    "cardId"
  ],
  "properties": {
    "colCoCode": {
      "type": "integer"
    },
    "payerNumber": {
      "type": "string"
    },
    "accountNumber": {
      "type": "string"
    },
    "cardId": {
      "type": "string"
    },
    "limits": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CardLimit"
      }
    }
  }
}