{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-evidencecontainerwithtargets.json", "title": "EvidenceContainerWithTargets", "description": "Schema for EvidenceContainerWithTargets in Nuix REST API", "type": "object", "properties": { "name": { "type": "string", "description": "Sets the name for the evidence container that is created during ingestion." }, "customMetadata": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Sets a map of custom metadata for the evidence container." }, "encoding": { "type": "string", "description": "Sets the encoding for the evidence container. If the encoding is not set the default system encoding will be used." }, "custodian": { "type": "string", "description": "Sets the name of the initial custodian for the data." }, "timeZone": { "type": "string", "description": "Sets the time zone for the evidence container. If the time zone is not set the system's default time zone will be used." }, "description": { "type": "string", "description": "Sets the description for the evidence container." }, "locale": { "type": "string", "description": "Sets the locale for the evidence container. Some file types and named entities require a locale for them to be ingested accurately. If not set then the system's default locale will be used. Format is that required by IETF BCP 47 (e.g. 'en-US')." }, "files": { "type": "array", "description": "A list of ingestible files to ingest.", "items": { "$ref": "#/components/schemas/IngestibleFile" } }, "exchangeMailboxes": { "type": "array", "description": "A list of ingestible exchange mailboxes to ingest.", "items": { "$ref": "#/components/schemas/IngestibleExchangeMailbox" } }, "s3Buckets": { "type": "array", "description": "A list of ingestible S3 buckets to ingest.", "items": { "$ref": "#/components/schemas/IngestibleS3Bucket" } }, "sqlServers": { "type": "array", "description": "A list of ingestible SQL servers to ingest.", "items": { "$ref": "#/components/schemas/IngestibleSQLServer" } }, "oracleServers": { "type": "array", "description": "A list of ingestible Oracle servers to ingest.", "items": { "$ref": "#/components/schemas/IngestibleOracleServer" } }, "enterpriseVaults": { "type": "array", "description": "A list of ingestible enterprise vaults to ingest.", "items": { "$ref": "#/components/schemas/IngestibleEnterpriseVault" } }, "sharepointSites": { "type": "array", "description": "A list of ingestible sharepoint sites to ingest.", "items": { "$ref": "#/components/schemas/IngestibleSharepoint" } }, "mailStores": { "type": "array", "description": "A list of ingestible mail stores to ingest.", "items": { "$ref": "#/components/schemas/IngestibleMailStore" } }, "loadFiles": { "type": "array", "description": "A list of ingestible load files to ingest.", "items": { "$ref": "#/components/schemas/IngestibleLoadFile" } }, "centeraClusters": { "type": "array", "description": "A list of ingestible centera clusters to ingest.", "items": { "$ref": "#/components/schemas/IngestibleCenteraCluster" } }, "splitFiles": { "type": "array", "description": "A list of ingestible split files to ingest.", "items": { "$ref": "#/components/schemas/IngestibleSplitFileList" } }, "dropboxes": { "type": "array", "description": "A list of ingestible Dropbox accounts to ingest.", "items": { "$ref": "#/components/schemas/IngestibleDropbox" } }, "sshServers": { "type": "array", "description": "A list of SSH-based servers to ingest.", "items": { "$ref": "#/components/schemas/IngestibleSSH" } }, "twitterLocations": { "type": "array", "description": "A list of historical twitter locations to ingest.", "items": { "$ref": "#/components/schemas/IngestibleTwitter" } }, "documentumServers": { "type": "array", "description": "A list of documentum servers to ingest.", "items": { "$ref": "#/components/schemas/IngestibleDocumentum" } }, "ms365Locations": { "type": "array", "description": "A list of Microsoft 365 locations to ingest.", "items": { "$ref": "#/components/schemas/IngestibleMicrosoft365" } }, "slackLocations": { "type": "array", "description": "A list of slack locations to ingest.", "items": { "$ref": "#/components/schemas/IngestibleSlack" } } } }