Nuix · Schema

CreateTagListResponse

Schema for CreateTagListResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
tagList array List of tags used during the operation
createdTags array List of tags that were succuessfully created
failedTags array List of tags that failed to be created
View JSON Schema on GitHub

JSON Schema

nuix-rest-createtaglistresponse.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-createtaglistresponse.json",
  "title": "CreateTagListResponse",
  "description": "Schema for CreateTagListResponse in Nuix REST API",
  "type": "object",
  "properties": {
    "tagList": {
      "type": "array",
      "description": "List of tags used during the operation",
      "items": {
        "type": "string"
      }
    },
    "createdTags": {
      "type": "array",
      "description": "List of tags that were succuessfully created",
      "items": {
        "type": "string"
      }
    },
    "failedTags": {
      "type": "array",
      "description": "List of tags that failed to be created",
      "items": {
        "type": "string"
      }
    }
  }
}