Apache Ignite · JSON Structure

Rest Api Cluster Node Structure

Information about the cluster node.

Type: object Properties: 4
CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

ClusterNode is a JSON Structure definition published by Apache Ignite, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name address metadata

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-cluster-node-structure.json",
  "name": "ClusterNode",
  "description": "Information about the cluster node.",
  "properties": {
    "id": {
      "type": "uuid",
      "description": "Node ID."
    },
    "name": {
      "type": "string",
      "description": "Unique cluster name."
    },
    "address": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NetworkAddress"
        },
        {
          "description": "Cluster network address information."
        }
      ]
    },
    "metadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodeMetadata"
        },
        {
          "description": "Node metadata information."
        }
      ]
    }
  }
}