{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/management_operation_transactions_response", "title": "Management Operation Transactions Response", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/management_operation_transaction" } }, "has_more": { "type": "boolean" } }, "required": [ "data", "has_more" ] }