Synctera · Schema

event_list

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

synctera-event-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/event_list",
  "title": "event_list",
  "allOf": [
    {
      "properties": {
        "event_list": {
          "description": "Array of events",
          "items": {
            "$ref": "#/components/schemas/event"
          },
          "type": "array"
        }
      },
      "required": [
        "event_list"
      ],
      "type": "object"
    },
    {
      "$ref": "#/components/schemas/paginated_response"
    }
  ]
}