mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-05-07 01:58:24 +08:00
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.
19 lines
578 B
JSON
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": []
|
|
}
|
|
}
|
|
}
|