Apache Ignite · Schema

NetworkAddress

Node network address information.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
host string Name of the host node runs on.
port integer Port the node runs on.
View JSON Schema on GitHub

JSON Schema

rest-api-network-address-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-network-address-schema.json",
  "title": "NetworkAddress",
  "description": "Node network address information.",
  "type": "object",
  "properties": {
    "host": {
      "type": "string",
      "description": "Name of the host node runs on."
    },
    "port": {
      "type": "integer",
      "description": "Port the node runs on.",
      "format": "int32"
    }
  }
}