Files
stacks-blockchain-api/docs/api/transaction/get-mempool-transactions.schema.json
2020-07-24 14:27:52 +02:00

25 lines
548 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request that returns transactions",
"title": "MempoolTransactionListResponse",
"type": "object",
"required": ["results", "limit", "offset", "total"],
"properties": {
"limit": {
"type": "integer"
},
"offset": {
"type": "integer"
},
"total": {
"type": "integer"
},
"results": {
"type": "array",
"items": {
"$ref": "../../entities/mempool-transactions/transaction.schema.json"
}
}
}
}