Nuix · Schema

Cluster

Schema for Cluster in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
nodes array List of nodes in the cluster. There should be at least one node in the list.
View JSON Schema on GitHub

JSON Schema

nuix-rest-cluster.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-cluster.json",
  "title": "Cluster",
  "description": "Schema for Cluster in Nuix REST API",
  "type": "object",
  "properties": {
    "nodes": {
      "type": "array",
      "description": "List of nodes in the cluster.  There should be at least one node in the list.",
      "items": {
        "$ref": "#/components/schemas/ClusterNode"
      }
    }
  }
}