mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-13 16:19:26 +08:00
25 lines
548 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|