Node state.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-schema/rest-api-node-state-schema.json", "title": "NodeState", "description": "Node state.", "type": "object", "properties": { "name": { "type": "string", "description": "Unique node name." }, "state": { "allOf": [ { "$ref": "#/components/schemas/State" }, { "description": "Node state." } ] } }, "required": [ "name", "state" ] }