Nuix · Schema

BulkProductionSetWithProfilesRequest

Schema for BulkProductionSetWithProfilesRequest in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
query string Query items that should be included. If a query is not supplied it defaults to an empty string, which returns all items.
deduplication string Deduplicate items. Defaults to none.
relationType string The relation to apply to the found items. For performance reasons, the family option is run against the top-level items. Defaults to no relation.
includeFamily boolean Includes families of items for results of provided query. Defaults to false.
familyQuery string An optional query used to select family items. Will not be used if includeFamily is true. To exclude family items entirely, set includeFamily to false and either omit this entry or set its value to nu
includeDuplicates boolean Includes duplicates of items for results of provided query. Defaults to false.
duplicatesQuery string An optional query used to select duplicate items. Will not be used if includeDuplicates is true. To exclude duplicate items entirely, set includeDuplicates to false and either omit this entry or set i
includeNearDuplicates boolean Includes near duplicates of items for results of provided query. Defaults to false.
nearDuplicatesQuery string An optional query used to select near duplicate items. Will not be used if includeNearDuplicates is true. To exclude near duplicate items entirely, set includeNearDuplicates to false and either omit t
nearDuplicatesThreshold number The threshold used to calculate near duplicates. Defaults to 0.5.
threadsQuery string An optional query used to select thread items. To exclude thread items entirely, either omit this entry or set its value to null.
productionProfileName string The name of the production profile to use.
imagingProfileName string The name of the imaging profile to use.
skipNativesSlipsheetedItems boolean Sets whether this production set skips export of natives for slip-sheeted items.
description string Set the long description of the production set.
name string The name of the production set to operate on.
View JSON Schema on GitHub

JSON Schema

nuix-rest-bulkproductionsetwithprofilesrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-bulkproductionsetwithprofilesrequest.json",
  "title": "BulkProductionSetWithProfilesRequest",
  "description": "Schema for BulkProductionSetWithProfilesRequest in Nuix REST API",
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Query items that should be included. If a query is not supplied it defaults to an empty string, which returns all items."
    },
    "deduplication": {
      "type": "string",
      "description": "Deduplicate items. Defaults to none.",
      "default": "none",
      "enum": [
        "none",
        "md5",
        "per custodian"
      ]
    },
    "relationType": {
      "type": "string",
      "description": "The relation to apply to the found items. For performance reasons, the family option is run against the top-level items.  Defaults to no relation.",
      "enum": [
        "family",
        "topTypes",
        "descendants"
      ]
    },
    "includeFamily": {
      "type": "boolean",
      "description": "Includes families of items for results of provided query. Defaults to false.",
      "default": false
    },
    "familyQuery": {
      "type": "string",
      "description": "An optional query used to select family items.  Will not be used if includeFamily is true.  To exclude family items entirely, set includeFamily to false and either omit this entry or set its value to null."
    },
    "includeDuplicates": {
      "type": "boolean",
      "description": "Includes duplicates of items for results of provided query. Defaults to false.",
      "default": false
    },
    "duplicatesQuery": {
      "type": "string",
      "description": "An optional query used to select duplicate items.  Will not be used if includeDuplicates is true.  To exclude duplicate items entirely, set includeDuplicates to false and either omit this entry or set its value to null."
    },
    "includeNearDuplicates": {
      "type": "boolean",
      "description": "Includes near duplicates of items for results of provided query. Defaults to false.",
      "default": false
    },
    "nearDuplicatesQuery": {
      "type": "string",
      "description": "An optional query used to select near duplicate items.  Will not be used if includeNearDuplicates is true.  To exclude near duplicate items entirely, set includeNearDuplicates to false and either omit this entry or set its value to null."
    },
    "nearDuplicatesThreshold": {
      "type": "number",
      "description": "The threshold used to calculate near duplicates.  Defaults to 0.5.",
      "format": "float",
      "default": 0.5
    },
    "threadsQuery": {
      "type": "string",
      "description": "An optional query used to select thread items.  To exclude thread items entirely, either omit this entry or set its value to null."
    },
    "productionProfileName": {
      "type": "string",
      "description": "The name of the production profile to use."
    },
    "imagingProfileName": {
      "type": "string",
      "description": "The name of the imaging profile to use."
    },
    "skipNativesSlipsheetedItems": {
      "type": "boolean",
      "description": "Sets whether this production set skips export of natives for slip-sheeted items."
    },
    "description": {
      "type": "string",
      "description": "Set the long description of the production set."
    },
    "name": {
      "type": "string",
      "description": "The name of the production set to operate on."
    }
  },
  "required": [
    "name",
    "productionProfileName",
    "imagingProfileName"
  ]
}