Adyen · Schema

Key

Key schema from Adyen API

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

management-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/management-key-schema.json",
  "title": "Key",
  "description": "Key schema from Adyen API",
  "type": "object",
  "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"
    }
  }
}