Apache Ignite · Schema

NodeInfo

Node info.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
name string Unique node name.
jdbcPort integer Node JDBC port.
View JSON Schema on GitHub

JSON Schema

rest-api-node-info-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-info-schema.json",
  "title": "NodeInfo",
  "description": "Node info.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Unique node name."
    },
    "jdbcPort": {
      "type": "integer",
      "description": "Node JDBC port.",
      "format": "int32"
    }
  },
  "required": [
    "jdbcPort",
    "name"
  ]
}