Lithic · Schema

Tokenization Event

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
created_at string Date and time when the tokenization event first occurred. UTC time zone.
result object
token string Globally unique identifier for a Tokenization Event
type string Enum representing the type of tokenization event that occurred
tokenization_decline_reasons array List of reasons why the tokenization was declined
tokenization_tfa_reasons array List of reasons why two-factor authentication was required
rule_results array Results from rules that were evaluated for this tokenization
View JSON Schema on GitHub

JSON Schema

lithic-tokenization-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/tokenization-event",
  "title": "Tokenization Event",
  "properties": {
    "created_at": {
      "description": "Date and time when the tokenization event first occurred. UTC time zone.",
      "format": "date-time",
      "type": "string"
    },
    "result": {
      "$ref": "#/components/schemas/tokenization-event-outcome"
    },
    "token": {
      "description": "Globally unique identifier for a Tokenization Event",
      "format": "uuid",
      "type": "string"
    },
    "type": {
      "description": "Enum representing the type of tokenization event that occurred",
      "enum": [
        "TOKENIZATION_2FA",
        "TOKENIZATION_AUTHORIZATION",
        "TOKENIZATION_DECISIONING",
        "TOKENIZATION_ELIGIBILITY_CHECK",
        "TOKENIZATION_UPDATED"
      ],
      "type": "string"
    },
    "tokenization_decline_reasons": {
      "description": "List of reasons why the tokenization was declined",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/tokenization-decline-reason"
      }
    },
    "tokenization_tfa_reasons": {
      "description": "List of reasons why two-factor authentication was required",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/tokenization-tfa-reason"
      }
    },
    "rule_results": {
      "description": "Results from rules that were evaluated for this tokenization",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/tokenization-rule-result"
      }
    }
  }
}