Nuix · Schema

BulkItemCustomMetadataRequest

Schema for BulkItemCustomMetadataRequest in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
fieldName string The name of the custom metadata field
value object The value of the custom metadata field
type string The data type of the field
mode string The custom metadata mode
params object Any parameters required to parse the value field. params must contain a key "mimeType" with value being the MIME type of the binary data being stored. The value must be a valid MIME type name known to
query string Query items that should be included. If a query is not supplied it defaults to an empty string, which returns all items.
View JSON Schema on GitHub

JSON Schema

nuix-rest-bulkitemcustommetadatarequest.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-bulkitemcustommetadatarequest.json",
  "title": "BulkItemCustomMetadataRequest",
  "description": "Schema for BulkItemCustomMetadataRequest in Nuix REST API",
  "type": "object",
  "properties": {
    "fieldName": {
      "type": "string",
      "description": "The name of the custom metadata field"
    },
    "value": {
      "type": "object",
      "description": "The value of the custom metadata field"
    },
    "type": {
      "type": "string",
      "description": "The data type of the field",
      "enum": [
        "integer",
        "float",
        "date-time",
        "text",
        "boolean",
        "binary"
      ]
    },
    "mode": {
      "type": "string",
      "description": "The custom metadata mode",
      "enum": [
        "user",
        "api"
      ]
    },
    "params": {
      "type": "object",
      "additionalProperties": {
        "type": "object"
      },
      "description": "Any parameters required to parse the value field.  params must contain a key \"mimeType\" with value being the MIME type of the binary data being stored. The value must be a valid MIME type name known to Nuix."
    },
    "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."
    }
  },
  "required": [
    "fieldName",
    "value",
    "type"
  ]
}