Otter · JSON Structure

Public Api Card Info Structure

Additional card information.

Type: object Properties: 2 Required: 2
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

CardInfo is a JSON Structure definition published by Otter, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

paymentNetwork type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-card-info-structure.json",
  "name": "CardInfo",
  "description": "Additional card information.",
  "type": "object",
  "properties": {
    "paymentNetwork": {
      "type": "string",
      "description": "The payment network (aka card brand or card scheme) for this card.",
      "enum": [
        "MASTERCARD",
        "MASTERCARD_MAESTRO",
        "VISA",
        "AMEX",
        "DINERS",
        "ELO",
        "HIPERCARD",
        "BANRICOMPRAS",
        "NUGO",
        "GOODCARD",
        "ELO_MAIS",
        "GREENCARD",
        "VEROCARD",
        "COOPER",
        "NUTRICARD",
        "VR",
        "SODEXO",
        "OTHER"
      ],
      "example": "MASTERCARD"
    },
    "type": {
      "type": "string",
      "description": "The payment type of the card.",
      "enum": [
        "CREDIT",
        "DEBIT",
        "VOUCHER",
        "OTHER"
      ],
      "example": "CREDIT"
    }
  },
  "required": [
    "paymentNetwork",
    "type"
  ],
  "deprecated": true
}