mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-13 08:40:42 +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
16 lines
474 B
JSON
16 lines
474 B
JSON
{
|
|
"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"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"network_identifier": {
|
|
"$ref": "../../entities/rosetta/rosetta-network-identifier.schema.json"
|
|
},
|
|
"metadata": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|