Nuix · Schema

CountResponse

Schema for CountResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
count integer The count of the items in the query.
query string The query submitted.
casePath string The absolute path of the case.
caseGuid string The case identifier.
View JSON Schema on GitHub

JSON Schema

nuix-rest-countresponse.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-countresponse.json",
  "title": "CountResponse",
  "description": "Schema for CountResponse in Nuix REST API",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "The count of the items in the query.",
      "format": "int64"
    },
    "query": {
      "type": "string",
      "description": "The query submitted."
    },
    "casePath": {
      "type": "string",
      "description": "The absolute path of the case."
    },
    "caseGuid": {
      "type": "string",
      "description": "The case identifier."
    }
  }
}