Nuix · Schema
ReloadItemsIngestionRequest
Schema for ReloadItemsIngestionRequest in Nuix REST API
ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence
Properties
| Name | Type | Description |
|---|---|---|
| processorSettings | object | |
| mimeTypeProcessorSettings | array | Sets the processing settings for individual mime types. |
| parallelProcessingSettings | object | |
| keystoreKeyParameters | array | Sets the settings used to apply a keystore file to the ingestion. |
| rescanEvidenceRepositories | boolean | If true, the case's Evidence Repositories will be rescanned to discover new Evidence Containers within them and new files within existing Evidence Containers which are themselves within the cases's Ev |
| rescanEvidenceRepositoriesSettings | object | |
| passwordDiscoverySettings | object | |
| configurationProfile | string | Deprecated in favor of processingProfile. Configuration profile to use as base set of processor, parallel processing, and mime type settings. Values present in processorSettings, parallelProcessingSet |
| processingProfile | string | The name of the Processing Profile to use. If you use this setting then do not use any other settings from processorSettings as everything will be overridden by the loaded Processing profile. |
| query | string | All items matching the query will be reloaded from source. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-reloaditemsingestionrequest.json",
"title": "ReloadItemsIngestionRequest",
"description": "Schema for ReloadItemsIngestionRequest in Nuix REST API",
"type": "object",
"properties": {
"processorSettings": {
"$ref": "#/components/schemas/ProcessorSettings"
},
"mimeTypeProcessorSettings": {
"type": "array",
"description": "Sets the processing settings for individual mime types.",
"items": {
"$ref": "#/components/schemas/MimeTypeProcessingSetting"
}
},
"parallelProcessingSettings": {
"$ref": "#/components/schemas/ParallelProcessingSettings"
},
"keystoreKeyParameters": {
"type": "array",
"description": "Sets the settings used to apply a keystore file to the ingestion.",
"items": {
"$ref": "#/components/schemas/KeyStoreKeyParameters"
}
},
"rescanEvidenceRepositories": {
"type": "boolean",
"description": "If true, the case's Evidence Repositories will be rescanned to discover new Evidence Containers within them and new files within existing Evidence Containers which are themselves within the cases's Evidence Repositories. Default is false."
},
"rescanEvidenceRepositoriesSettings": {
"$ref": "#/components/schemas/RescanEvidenceRepositoriesSettings"
},
"passwordDiscoverySettings": {
"$ref": "#/components/schemas/PasswordDiscoverySettings"
},
"configurationProfile": {
"type": "string",
"description": "Deprecated in favor of processingProfile. Configuration profile to use as base set of processor, parallel processing, and mime type settings. Values present in processorSettings, parallelProcessingSettings, and mimeTypeProcessorSettings will override anything defined by this profile."
},
"processingProfile": {
"type": "string",
"description": "The name of the Processing Profile to use. If you use this setting then do not use any other settings from processorSettings as everything will be overridden by the loaded Processing profile."
},
"query": {
"type": "string",
"description": "All items matching the query will be reloaded from source."
}
}
}