Adyen · Schema

Key

PaymentsFinancial ServicesFintech

Properties

Name Type Description
identifier string The unique identifier of the shared key.
passphrase string The secure passphrase to protect the shared key.
version integer The version number of the shared key.
View JSON Schema on GitHub

JSON Schema

adyen-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Key",
  "title": "Key",
  "properties": {
    "identifier": {
      "description": "The unique identifier of the shared key.",
      "type": "string"
    },
    "passphrase": {
      "description": "The secure passphrase to protect the shared key.",
      "type": "string"
    },
    "version": {
      "description": "The version number of the shared key.",
      "format": "int32",
      "type": "integer"
    }
  },
  "type": "object"
}