{ "$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 } } }