Nuix · Schema

DeleteTagListResponse

Schema for DeleteTagListResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
tagList array List of tags used during the operation
deletedTags array List of tags that were successfully deleted
failedTags array List of tags that failed deletion
View JSON Schema on GitHub

JSON Schema

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