{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://bcp.dev.br/draft/schemas/shopping/types/payment_credential.json",
  "title": "Payment Credential",
  "description": "The base definition for any payment credential. Handlers define specific credential types.",
  "description_pt": "A definição base para qualquer credencial de pagamento. Os handlers definem tipos específicos de credencial.",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "The credential type discriminator. Specific schemas will constrain this to a constant value.",
      "description_pt": "O discriminador do tipo de credencial. Schemas específicos restringirão isto a um valor constante."
    }
  },
  "additionalProperties": true
}
