Nuix · Schema

ApplyTagListResponse

Schema for ApplyTagListResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
tagList array List of tags used during the operation
successfulTags array List of tags that successfully completed the operation
failedTags array List of tags that failed the operation
View JSON Schema on GitHub

JSON Schema

nuix-rest-applytaglistresponse.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-applytaglistresponse.json",
  "title": "ApplyTagListResponse",
  "description": "Schema for ApplyTagListResponse in Nuix REST API",
  "type": "object",
  "properties": {
    "tagList": {
      "type": "array",
      "description": "List of tags used during the operation",
      "items": {
        "type": "string"
      }
    },
    "successfulTags": {
      "type": "array",
      "description": "List of tags that successfully completed the operation",
      "items": {
        "type": "string"
      }
    },
    "failedTags": {
      "type": "array",
      "description": "List of tags that failed the operation",
      "items": {
        "type": "string"
      }
    }
  }
}