Nuix · Schema

TagList

Schema for TagList in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
tagList array List of tags used during the operation
View JSON Schema on GitHub

JSON Schema

nuix-rest-taglist.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-taglist.json",
  "title": "TagList",
  "description": "Schema for TagList in Nuix REST API",
  "type": "object",
  "properties": {
    "tagList": {
      "type": "array",
      "description": "List of tags used during the operation",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "tagList"
  ]
}