Schema for CreateTagListResponse in Nuix REST API
{ "$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" } } } }