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
19 lines
702 B
JSON
19 lines
702 B
JSON
{
|
|
"type": "object",
|
|
"title": "RosettaBlockTransactionRequest",
|
|
"description": "A BlockTransactionRequest is used to fetch a Transaction included in a block that is not returned in a BlockResponse.",
|
|
"required": ["network_identifier", "block_identifier", "transaction_identifier"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"network_identifier": {
|
|
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
|
|
},
|
|
"block_identifier": {
|
|
"$ref": "./../../entities/rosetta/rosetta-partial-block-identifier.schema.json"
|
|
},
|
|
"transaction_identifier": {
|
|
"$ref": "./../../entities/rosetta/rosetta-transaction-identifier.schema.json"
|
|
}
|
|
}
|
|
}
|