Nuix · Schema

BulkApplyCustomMetadataResponse

Schema for BulkApplyCustomMetadataResponse 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.
operation string The bulk operation that was performed.
fieldName string The custom metadata field name that was operated on.
results object
View JSON Schema on GitHub

JSON Schema

nuix-rest-bulkapplycustommetadataresponse.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-bulkapplycustommetadataresponse.json",
  "title": "BulkApplyCustomMetadataResponse",
  "description": "Schema for BulkApplyCustomMetadataResponse 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."
    },
    "operation": {
      "type": "string",
      "description": "The bulk operation that was performed.",
      "enum": [
        "ADD",
        "DELETE"
      ]
    },
    "fieldName": {
      "type": "string",
      "description": "The custom metadata field name that was operated on."
    },
    "results": {
      "$ref": "#/components/schemas/ApplyCustomMetadataResponse"
    }
  }
}