{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://ucp.travel/schemas/travel/provider_payment.json",
  "title": "travel.ucp.provider_payment",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "id": {
      "type": "string"
    },
    "version": {
      "type": "string",
      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
    },
    "available_instruments": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "type": {
            "type": "string",
            "enum": ["card", "balance"]
          }
        },
        "required": ["type"]
      }
    },
    "config": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "provider": {
          "type": "string"
        },
        "card_capture": {
          "type": "string"
        },
        "credential_format": {
          "type": "string"
        },
        "three_d_secure_supported": {
          "type": "boolean"
        }
      }
    }
  },
  "required": ["id", "version", "available_instruments", "config"]
}
