102 lines
2.3 KiB
JSON
102 lines
2.3 KiB
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"transaction_offers": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer",
|
|
"example": 1
|
|
},
|
|
"customer_id": {
|
|
"type": "string",
|
|
"example": "CUST123"
|
|
},
|
|
"transaction_id": {
|
|
"type": "string",
|
|
"example": "TRX123456"
|
|
},
|
|
"original_transaction": {
|
|
"type": "string",
|
|
"example": "TRX789012"
|
|
},
|
|
"offer_id": {
|
|
"type": "string",
|
|
"example": "OFFER456"
|
|
},
|
|
"product_id": {
|
|
"type": "string",
|
|
"example": "PROD789"
|
|
},
|
|
"min_amount": {
|
|
"type": "number",
|
|
"format": "float",
|
|
"example": 1000.0
|
|
},
|
|
"max_amount": {
|
|
"type": "number",
|
|
"format": "float",
|
|
"example": 5000.0
|
|
},
|
|
"eligible_amount": {
|
|
"type": "number",
|
|
"format": "float",
|
|
"example": 3000.0
|
|
},
|
|
"tenor": {
|
|
"type": "integer",
|
|
"example": 6
|
|
},
|
|
"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": "TransactionOffersResponse"
|
|
}
|
|
} |