Nuix · Schema

ItemSizesRequest

Schema for ItemSizesRequest 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'
sizeType string The size type to calculate.
View JSON Schema on GitHub

JSON Schema

nuix-rest-itemsizesrequest.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-itemsizesrequest.json",
  "title": "ItemSizesRequest",
  "description": "Schema for ItemSizesRequest 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"
      ]
    },
    "sizeType": {
      "type": "string",
      "description": "The size type to calculate.",
      "enum": [
        "FILE_SIZE",
        "AUDIT_SIZE"
      ]
    }
  }
}