Apache Ignite · Schema

ClusterTag

Unique tag that identifies the cluster.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
clusterId string Unique cluster UUID. Generated automatically.
clusterName string Unique cluster name.
View JSON Schema on GitHub

JSON Schema

rest-api-cluster-tag-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-cluster-tag-schema.json",
  "title": "ClusterTag",
  "description": "Unique tag that identifies the cluster.",
  "type": "object",
  "properties": {
    "clusterId": {
      "type": "string",
      "description": "Unique cluster UUID. Generated automatically.",
      "format": "uuid"
    },
    "clusterName": {
      "type": "string",
      "description": "Unique cluster name."
    }
  }
}