Nuix · Schema

ClusterThirdPartyDependency

Schema for ClusterThirdPartyDependency in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
hostAddress string node host URL
thirdPartyDependency object a summary of third party dependencies and their availability
View JSON Schema on GitHub

JSON Schema

nuix-rest-clusterthirdpartydependency.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-clusterthirdpartydependency.json",
  "title": "ClusterThirdPartyDependency",
  "description": "Schema for ClusterThirdPartyDependency in Nuix REST API",
  "type": "object",
  "properties": {
    "hostAddress": {
      "type": "string",
      "description": "node host URL"
    },
    "thirdPartyDependency": {
      "description": "a summary of third party dependencies and their availability",
      "type": "object",
      "items": {
        "$ref": "#/components/schemas/ThirdPartyDependencyResponse"
      }
    }
  }
}