Nuix · Schema

DeduplicationQueryListRequest

Schema for DeduplicationQueryListRequest in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
queryList array The set of queries which will be executed.
deduplication string The deduplication to apply over each query. Defaults to 'none'
View JSON Schema on GitHub

JSON Schema

nuix-rest-deduplicationquerylistrequest.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-deduplicationquerylistrequest.json",
  "title": "DeduplicationQueryListRequest",
  "description": "Schema for DeduplicationQueryListRequest in Nuix REST API",
  "type": "object",
  "properties": {
    "queryList": {
      "type": "array",
      "description": "The set of queries which will be executed.",
      "items": {
        "type": "string"
      }
    },
    "deduplication": {
      "type": "string",
      "description": "The deduplication to apply over each query. Defaults to 'none'",
      "default": "none",
      "enum": [
        "none",
        "md5"
      ]
    }
  }
}