Nuix · Schema

CaseSubsetProcessingSettings

Schema for CaseSubsetProcessingSettings in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
analysisLanguage string A supported language code. en - English, ja - Japanese. Default is "en".
stopWords boolean stopWords. Default is false.
stemming boolean If true, stems words using English rules before indexing (e.g. "fishing" -> "fish".) If false, no stemming is performed. Default is false.
enableExactQueries boolean enableExactQueries. Default is false.
View JSON Schema on GitHub

JSON Schema

nuix-rest-casesubsetprocessingsettings.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-casesubsetprocessingsettings.json",
  "title": "CaseSubsetProcessingSettings",
  "description": "Schema for CaseSubsetProcessingSettings in Nuix REST API",
  "type": "object",
  "properties": {
    "analysisLanguage": {
      "type": "string",
      "description": "A supported language code.  en - English, ja - Japanese. Default is \"en\".",
      "default": "en"
    },
    "stopWords": {
      "type": "boolean",
      "description": "stopWords.  Default is false.",
      "default": false
    },
    "stemming": {
      "type": "boolean",
      "description": "If true, stems words using English rules before indexing (e.g. \"fishing\" -> \"fish\".) If false, no stemming is performed. Default is false.",
      "default": false
    },
    "enableExactQueries": {
      "type": "boolean",
      "description": "enableExactQueries.  Default is false.",
      "default": false
    }
  }
}