Synctera · Schema

webhook_response

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

synctera-webhook-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook_response",
  "title": "webhook_response",
  "allOf": [
    {
      "$ref": "#/components/schemas/webhook_request"
    },
    {
      "properties": {
        "creation_time": {
          "description": "The timestamp representing when the webhook request was made",
          "example": "Fri Apr 01 2022 06:46:45 GMT+0000 (Coordinated Universal Time)",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        },
        "last_modified_time": {
          "description": "The timestamp representing when the webhook was last modified",
          "example": "Thu Jul 14 2022 21:33:00 GMT+0000 (Coordinated Universal Time)",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        }
      },
      "type": "object"
    }
  ]
}