mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-04-28 21:05:36 +08:00
* fix: openapi lint validator * fix: balances schema * fix: add title to all entities * fix: some additionalProperties and duplicate names * fix: remove additional properties for rosetta * fix: rosetta tests * style: remove empty description
25 lines
525 B
JSON
25 lines
525 B
JSON
{
|
|
"description": "GET request that returns transactions",
|
|
"title": "MempoolTransactionListResponse",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|