Synctera · Schema

webhook_list

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

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