Adyen · Schema

SDKEphemPubKey

SDKEphemPubKey schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
crv string The `crv` value as received from the 3D Secure 2 SDK.
kty string The `kty` value as received from the 3D Secure 2 SDK.
x string The `x` value as received from the 3D Secure 2 SDK.
y string The `y` value as received from the 3D Secure 2 SDK.
View JSON Schema on GitHub

JSON Schema

checkout-sdk-ephem-pub-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-sdk-ephem-pub-key-schema.json",
  "title": "SDKEphemPubKey",
  "description": "SDKEphemPubKey schema from Adyen API",
  "type": "object",
  "properties": {
    "crv": {
      "description": "The `crv` value as received from the 3D Secure 2 SDK.",
      "type": "string"
    },
    "kty": {
      "description": "The `kty` value as received from the 3D Secure 2 SDK.",
      "type": "string"
    },
    "x": {
      "description": "The `x` value as received from the 3D Secure 2 SDK.",
      "type": "string"
    },
    "y": {
      "description": "The `y` value as received from the 3D Secure 2 SDK.",
      "type": "string"
    }
  }
}