Nuix · Schema

Hash

Schema for Hash in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
hashValue string 32-character MD5 hash value
fileSize number Optional file size. If provided, will be used to match before calculating hash
microHash string Optional MD5 hash value of the first 64 KB of a file. Used to match before calculating a full hash
View JSON Schema on GitHub

JSON Schema

nuix-ecc-hash.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-ecc-hash.json",
  "title": "Hash",
  "description": "Schema for Hash in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "hashValue": {
      "type": "string",
      "description": "32-character MD5 hash value"
    },
    "fileSize": {
      "type": "number",
      "description": "Optional file size.\n\nIf provided, will be used to match before calculating hash"
    },
    "microHash": {
      "type": "string",
      "description": "Optional MD5 hash value of the first 64 KB of a file.\n\nUsed to match before calculating a full hash"
    }
  }
}