Files
stacks-blockchain-api/docs/api/rosetta/rosetta-network-status-request.schema.json
Asim Mehmood bd4dc86493 fix: separate out rosetta request/response schema files from entity files
Several schema files referenced entity files in the docs/api/rosetta
directory.  They entity files have all been moved to docs/entities/rosetta
and references updated.
2020-09-01 08:26:03 -06:00

19 lines
578 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "Rosetta-status-request",
"type": "object",
"title": "RosettaStatusRequest",
"description": "This endpoint returns the current status of the network requested. Any NetworkIdentifier returned by /network/list should be accessible here.",
"required": ["network_identifier"],
"properties": {
"network_identifier": {
"$ref": "../../entities/rosetta/rosetta-network-identifier.schema.json"
},
"metadata": {
"type": "object",
"description": "",
"required": []
}
}
}