Adyen · Schema

TransactionIDType

Identification of a transaction for the Sale System or the POI System.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
TransactionID string
TimeStamp string
View JSON Schema on GitHub

JSON Schema

terminal-transaction-id-type-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/terminal-transaction-id-type-schema.json",
  "title": "TransactionIDType",
  "description": "Identification of a transaction for the Sale System or the POI System.",
  "type": "object",
  "properties": {
    "TransactionID": {
      "type": "string",
      "pattern": "^.+$"
    },
    "TimeStamp": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "TransactionID",
    "TimeStamp"
  ]
}