mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-04-29 13:25: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
18 lines
437 B
JSON
18 lines
437 B
JSON
{
|
|
"type": "object",
|
|
"title": "RosettaParentBlockIdentifier",
|
|
"additionalProperties": false,
|
|
"description": "The block_identifier uniquely identifies a block in a particular network.",
|
|
"required": ["index", "hash"],
|
|
"properties": {
|
|
"index": {
|
|
"type": "integer",
|
|
"description": "This is also known as the block height."
|
|
},
|
|
"hash": {
|
|
"type": "string",
|
|
"description": "Block hash"
|
|
}
|
|
}
|
|
}
|