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

adyen-transactionidtype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionIDType",
  "title": "TransactionIDType",
  "type": "object",
  "description": "Identification of a transaction for the Sale System or the POI System.",
  "properties": {
    "TransactionID": {
      "type": "string",
      "pattern": "^.+$"
    },
    "TimeStamp": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "TransactionID",
    "TimeStamp"
  ]
}