Apache Ignite · JSON Structure

Rest Api Node State Structure

Node state.

Type: object Properties: 2 Required: 2
CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

NodeState is a JSON Structure definition published by Apache Ignite, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name state

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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