mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-04-29 05:15:32 +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
722 B
JSON
19 lines
722 B
JSON
{
|
|
"type": "object",
|
|
"title": "RosettaAccountBalanceRequest",
|
|
"description": "An AccountBalanceRequest is utilized to make a balance request on the /account/balance endpoint. If the block_identifier is populated, a historical balance query should be performed.",
|
|
"required": ["network_identifier", "account_identifier"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"network_identifier": {
|
|
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
|
|
},
|
|
"account_identifier": {
|
|
"$ref": "./../../entities/rosetta/rosetta-account.schema.json"
|
|
},
|
|
"block_identifier": {
|
|
"$ref": "./../../entities/rosetta/rosetta-partial-block-identifier.schema.json"
|
|
}
|
|
}
|
|
}
|