TransactionSearchResponse schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfers-transaction-search-response-schema.json", "title": "TransactionSearchResponse", "description": "TransactionSearchResponse schema from Adyen API", "type": "object", "properties": { "_links": { "description": "Contains links to the next and previous page whenever applicable.", "$ref": "#/components/schemas/Links" }, "data": { "description": "Contains the transactions that match the query parameters.", "items": { "$ref": "#/components/schemas/Transaction" }, "type": "array" } } }