3DS pre-authentication received

3DS pre-authentication event

Type: object
Additional properties: false
Domain: anti-fraud
Event: pre_authentication
Version: 1

|
type required

Title: Event type
Type: string

provider required

Title: Provider identifier
Type: string

document_number required

Title: Cardholder document number
Type: string

cardholder_postal_code

Title: Card holder postal code
Type: string

account_id required

Title: Account identifier
Type: integer

program_id

Title: Program identifier
Type: integer

card_id required

Title: Card identifier
Type: integer

card_mode_id required

Title: Card mode identifier
Type: integer

customer_id required

Title: Customer identifier
Type: integer

card_hash required

Title: Card secure equivalent to PAN
Type: string

card_bin

Title: Card bin
Type: string

card_last_four_digits

Title: Card last four digits
Type: string

raw_provider required

Title: Received provider data without PCI fields
Type: object
Additional properties: true

raw_response

Title: Generated response returned to provider
Type: object
Additional properties: true

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://pismo.io/events/anti-fraud/pre-authentication.json",
    "title": "3DS pre-authentication received",
    "description": "3DS pre-authentication event",
    "type": "object",
    "additionalProperties": false,
    "required": [
        "type",
        "provider",
        "document_number",
        "account_id",
        "card_id",
        "card_mode_id",
        "customer_id",
        "card_hash",
        "raw_provider"
    ],
    "properties": {
        "type": {
            "type": "string",
            "title": "Event type"
        },
        "provider": {
            "type": "string",
            "title": "Provider identifier"
        },
        "document_number": {
            "type": "string",
            "title": "Cardholder document number"
        },
        "cardholder_postal_code": {
            "type": "string",
            "title": "Card holder postal code"
        },
        "account_id": {
            "type": "integer",
            "title": "Account identifier"
        },
        "program_id": {
            "type": "integer",
            "title": "Program identifier"
        },
        "card_id": {
            "type": "integer",
            "title": "Card identifier"
        },
        "card_mode_id": {
            "type": "integer",
            "title": "Card mode identifier"
        },
        "customer_id": {
            "type": "integer",
            "title": "Customer identifier"
        },
        "card_hash": {
            "type": "string",
            "title": "Card secure equivalent to PAN"
        },
        "card_bin": {
            "type": "string",
            "title": "Card bin"
        },
        "card_last_four_digits": {
            "type": "string",
            "title": "Card last four digits"
        },
        "raw_provider": {
            "type": "object",
            "title": "Received provider data without PCI fields",
            "additionalProperties": true
        },
        "raw_response": {
            "type": "object",
            "title": "Generated response returned to provider",
            "additionalProperties": true
        }
    }
}