Nuix · Schema

launchCaseCollectionResponse

Schema for launchCaseCollectionResponse in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
collectionId integer id of the newly started collection
jobs array array of job IDs that have been started within the collection
View JSON Schema on GitHub

JSON Schema

nuix-ecc-launchcasecollectionresponse.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-launchcasecollectionresponse.json",
  "title": "launchCaseCollectionResponse",
  "description": "Schema for launchCaseCollectionResponse in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "collectionId": {
      "type": "integer",
      "description": "id of the newly started collection"
    },
    "jobs": {
      "type": "array",
      "description": "array of job IDs that have been started within the collection",
      "items": {
        "type": "integer"
      }
    }
  }
}