Nuix · Schema
ClusterNodeDetails
Schema for ClusterNodeDetails in Nuix REST API
ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence
Properties
| Name | Type | Description |
|---|---|---|
| guid | string | The unique identifier for the node. This is generated based upon the serverId. |
| serverId | string | The id of the node. |
| publicURL | string | The public URL of the node. |
| contextPath | string | server context path |
| name | string | The friendly name of the node. |
| maxWorkers | integer | The max number of workers of the node. |
| availableWorkers | integer | The number of workers available on the node. |
| busyWorkers | integer | The number of workers in use on the node. |
| tags | array | An array of tags applied to the node. This can be used for node filtering when processing in a cluster. |
| roles | array | A list of cluster roles the node has been assigned. |
| restVersion | string | The customer version of the node. |
| osInfo | object | |
| engineVersion | string | The engine version of the node. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-clusternodedetails.json",
"title": "ClusterNodeDetails",
"description": "Schema for ClusterNodeDetails in Nuix REST API",
"type": "object",
"properties": {
"guid": {
"type": "string",
"description": "The unique identifier for the node. This is generated based upon the serverId."
},
"serverId": {
"type": "string",
"description": "The id of the node."
},
"publicURL": {
"type": "string",
"description": "The public URL of the node."
},
"contextPath": {
"type": "string",
"description": "server context path"
},
"name": {
"type": "string",
"description": "The friendly name of the node."
},
"maxWorkers": {
"type": "integer",
"description": "The max number of workers of the node."
},
"availableWorkers": {
"type": "integer",
"description": "The number of workers available on the node."
},
"busyWorkers": {
"type": "integer",
"description": "The number of workers in use on the node."
},
"tags": {
"type": "array",
"description": "An array of tags applied to the node. This can be used for node filtering when processing in a cluster.",
"items": {
"type": "string"
}
},
"roles": {
"type": "array",
"description": "A list of cluster roles the node has been assigned.",
"items": {
"type": "string",
"enum": [
"PRODUCER",
"CONSUMER"
]
}
},
"restVersion": {
"type": "string",
"description": "The customer version of the node."
},
"osInfo": {
"$ref": "#/components/schemas/OperatingSystemDigest"
},
"engineVersion": {
"type": "string",
"description": "The engine version of the node."
}
}
}