80 lines
1.7 KiB
JSON
80 lines
1.7 KiB
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"transactions": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer",
|
|
"example": 1
|
|
},
|
|
"transaction_id": {
|
|
"type": "string",
|
|
"example": "TRX123456"
|
|
},
|
|
"account_id": {
|
|
"type": "string",
|
|
"example": "ACC456"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"example": "PAYMENT"
|
|
},
|
|
"channel": {
|
|
"type": "string",
|
|
"example": "MOBILE"
|
|
},
|
|
"created_at": {
|
|
"type": "string",
|
|
"format": "date-time",
|
|
"example": "2023-01-15T10:30:00Z"
|
|
},
|
|
"updated_at": {
|
|
"type": "string",
|
|
"format": "date-time",
|
|
"example": "2023-01-15T10:30:00Z"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"count": {
|
|
"type": "integer",
|
|
"example": 1
|
|
},
|
|
"pagination": {
|
|
"type": "object",
|
|
"properties": {
|
|
"total_count": {
|
|
"type": "integer",
|
|
"example": 100
|
|
},
|
|
"total_pages": {
|
|
"type": "integer",
|
|
"example": 5
|
|
},
|
|
"current_page": {
|
|
"type": "integer",
|
|
"example": 1
|
|
},
|
|
"limit": {
|
|
"type": "integer",
|
|
"example": 20
|
|
},
|
|
"has_next": {
|
|
"type": "boolean",
|
|
"example": true
|
|
},
|
|
"has_prev": {
|
|
"type": "boolean",
|
|
"example": false
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"xml": {
|
|
"name": "TransactionsResponse"
|
|
}
|
|
}
|