Files
stacks-blockchain-api/docs/entities/rosetta/rosetta-parent-block-identifier.schema.json
Rafael Cárdenas 666b8a60fb chore: fix openapi schema validation errors, clean up type definitions (#1170)
* 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
2022-05-13 15:25:11 -05:00

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"
}
}
}