Adyen · JSON Structure

Terminal Security Trailer Structure

It contains information related to the security of the message. SecurityTrailer as used by Adyen.

Type: object Properties: 5 Required: 5
PaymentsFinancial ServicesFintech

SecurityTrailer is a JSON Structure definition published by Adyen, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AdyenCryptoVersion KeyIdentifier KeyVersion Nonce Hmac

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-security-trailer-structure.json",
  "description": "It contains information related to the security of the message. SecurityTrailer as used by Adyen.",
  "type": "object",
  "properties": {
    "AdyenCryptoVersion": {
      "type": "int32"
    },
    "KeyIdentifier": {
      "type": "string",
      "pattern": "^.+$"
    },
    "KeyVersion": {
      "type": "int32"
    },
    "Nonce": {
      "type": "string",
      "format": "byte",
      "pattern": "^.+$"
    },
    "Hmac": {
      "type": "string",
      "format": "byte",
      "pattern": "^.+$"
    }
  },
  "required": [
    "AdyenCryptoVersion",
    "KeyIdentifier",
    "KeyVersion",
    "Nonce",
    "Hmac"
  ],
  "name": "SecurityTrailer"
}