Nuix · Schema

Case

Schema for Case in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
id integer id of the case
name string name of the case
status string case status, Open or Closed
View JSON Schema on GitHub

JSON Schema

nuix-ecc-case.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-case.json",
  "title": "Case",
  "description": "Schema for Case in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "id of the case"
    },
    "name": {
      "type": "string",
      "description": "name of the case"
    },
    "status": {
      "type": "string",
      "description": "case status, Open or Closed"
    }
  }
}