Klarna · Schema

MerchantManualIdentificationV1

FintechBNPLPaymentsCardsShopping

Properties

Name Type Description
challenge string Identification challenge
customer object
customer_obfuscated object
expires_at string Session identification expiry time (YYYY-MM-ddThh:mm:ss.fffZ)
View JSON Schema on GitHub

JSON Schema

klarna-merchantmanualidentificationv1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MerchantManualIdentificationV1",
  "title": "MerchantManualIdentificationV1",
  "type": "object",
  "properties": {
    "challenge": {
      "type": "string",
      "example": "A78",
      "description": "Identification challenge"
    },
    "customer": {
      "$ref": "#/components/schemas/CustomerV1"
    },
    "customer_obfuscated": {
      "$ref": "#/components/schemas/CustomerV1"
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "example": "2038-01-19T03:14:07.000Z",
      "description": "Session identification expiry time (YYYY-MM-ddThh:mm:ss.fffZ)"
    }
  }
}