Nuix · Schema

launchCaseCollectionByConfigurationResponse

Schema for launchCaseCollectionByConfigurationResponse in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
collectionId integer id of the newly created collection
computers array array of computers where the job is running (there will be only one computer)
View JSON Schema on GitHub

JSON Schema

nuix-ecc-launchcasecollectionbyconfigurationresponse.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-launchcasecollectionbyconfigurationresponse.json",
  "title": "launchCaseCollectionByConfigurationResponse",
  "description": "Schema for launchCaseCollectionByConfigurationResponse in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "collectionId": {
      "type": "integer",
      "description": "id of the newly created collection"
    },
    "computers": {
      "type": "array",
      "description": "array of computers where the job is running (there will be only one computer)",
      "items": {
        "$ref": "#/components/schemas/ComputerJobs"
      }
    }
  }
}