mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-13 08:01:46 +08:00
18 lines
588 B
JSON
18 lines
588 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "rosetta-block-request",
|
|
"type": "object",
|
|
"title": "RosettaBlockRequest",
|
|
"description": "A BlockRequest is utilized to make a block request on the /block endpoint.",
|
|
"required": ["network_identifier", "block_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"
|
|
}
|
|
}
|
|
}
|