Apache Ignite · Schema

NodeState

Node state.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
name string Unique node name.
state object
View JSON Schema on GitHub

JSON Schema

rest-api-node-state-schema.json Raw ↑
{
  "$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"
  ]
}