Nuix · Schema

CaseSubsetMetadata

Schema for CaseSubsetMetadata in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
name string The name of the case. If not supplied the current time in milliseconds will be used.
description string The case description
investigator string The case investigator
elasticSearchSettings object
binaryStoreLocation string The binary store location for this case, if applicable
View JSON Schema on GitHub

JSON Schema

nuix-rest-casesubsetmetadata.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-casesubsetmetadata.json",
  "title": "CaseSubsetMetadata",
  "description": "Schema for CaseSubsetMetadata in Nuix REST API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the case.  If not supplied the current time in milliseconds will be used."
    },
    "description": {
      "type": "string",
      "description": "The case description"
    },
    "investigator": {
      "type": "string",
      "description": "The case investigator"
    },
    "elasticSearchSettings": {
      "$ref": "#/components/schemas/ElasticSearchSettings"
    },
    "binaryStoreLocation": {
      "type": "string",
      "description": "The binary store location for this case, if applicable"
    }
  }
}