mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 22:43:34 +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
20 lines
532 B
JSON
20 lines
532 B
JSON
{
|
|
"type": "object",
|
|
"title": "RosettaMempoolResponse",
|
|
"description": "A MempoolResponse contains all transaction identifiers in the mempool for a particular network_identifier.",
|
|
"required": ["transaction_identifiers"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"transaction_identifiers": {
|
|
"type": "array",
|
|
"description": "",
|
|
"items": {
|
|
"$ref": "./../../entities/rosetta/rosetta-transaction-identifier.schema.json"
|
|
}
|
|
},
|
|
"metadata": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|