Lithic · Schema

3DS Challenge webhook event

Represents a challenge event that is emitted after issuing a 3DS challenge

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
authentication_object object
challenge object
event_type object
View JSON Schema on GitHub

JSON Schema

lithic-challenge-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/challenge-event",
  "title": "3DS Challenge webhook event",
  "type": "object",
  "description": "Represents a challenge event that is emitted after issuing a 3DS challenge",
  "properties": {
    "authentication_object": {
      "$ref": "#/components/schemas/authentication"
    },
    "challenge": {
      "$ref": "#/components/schemas/challenge"
    },
    "event_type": {
      "const": "three_ds_authentication.challenge"
    }
  },
  "required": [
    "authentication_object",
    "challenge",
    "event_type"
  ]
}