Adyen · Schema

PublicKeyResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
publicKey string The public key to be used for encrypting the symmetric session key.
publicKeyExpiryDate string The expiry date of the public key.
View JSON Schema on GitHub

JSON Schema

adyen-publickeyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublicKeyResponse",
  "title": "PublicKeyResponse",
  "properties": {
    "publicKey": {
      "description": "The public key to be used for encrypting the symmetric session key.",
      "type": "string"
    },
    "publicKeyExpiryDate": {
      "description": "The expiry date of the public key.",
      "type": "string"
    }
  },
  "required": [
    "publicKey",
    "publicKeyExpiryDate"
  ],
  "type": "object"
}