Nuix · Schema

Target

Schema for Target in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
id integer id of the Target
name string name of the target
description string description of the target
custodianId integer id of the Custodian this target belongs to
computerName string name of the Computer this target belongs to
computerGUID string GUID of the Computer this target belongs to
Inputs array array of inputs in the target
View JSON Schema on GitHub

JSON Schema

nuix-ecc-target.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-target.json",
  "title": "Target",
  "description": "Schema for Target in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "id of the Target"
    },
    "name": {
      "type": "string",
      "description": "name of the target"
    },
    "description": {
      "type": "string",
      "description": "description of the target"
    },
    "custodianId": {
      "type": "integer",
      "description": "id of the Custodian this target belongs to"
    },
    "computerName": {
      "type": "string",
      "description": "name of the Computer this target belongs to"
    },
    "computerGUID": {
      "type": "string",
      "description": "GUID of the Computer this target belongs to"
    },
    "Inputs": {
      "type": "array",
      "description": "array of inputs in the target",
      "items": {
        "$ref": "#/components/schemas/TargetInputs"
      }
    }
  }
}