mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-05-06 17:42:48 +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
16 lines
497 B
JSON
16 lines
497 B
JSON
{
|
|
"type": "object",
|
|
"title": "RosettaMempoolTransactionResponse",
|
|
"description": "A MempoolTransactionResponse contains an estimate of a mempool transaction. It may not be possible to know the full impact of a transaction in the mempool (ex: fee paid).",
|
|
"required": ["transaction"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"transaction": {
|
|
"$ref": "./../../entities/rosetta/rosetta-transaction.schema.json"
|
|
},
|
|
"metadata": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|