Nuix · Schema

SearchHit

Schema for SearchHit in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
term string Search hit term.
count integer The number of occurrances for this term
View JSON Schema on GitHub

JSON Schema

nuix-rest-searchhit.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-searchhit.json",
  "title": "SearchHit",
  "description": "Schema for SearchHit in Nuix REST API",
  "type": "object",
  "properties": {
    "term": {
      "type": "string",
      "description": "Search hit term."
    },
    "count": {
      "type": "integer",
      "description": "The number of occurrances for this term",
      "format": "int32"
    }
  }
}