Schema for ItemTextResponse 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-itemtextresponse.json", "title": "ItemTextResponse", "description": "Schema for ItemTextResponse in Nuix REST API", "type": "object", "properties": { "text": { "type": "string", "description": "text" }, "binaryAvailable": { "type": "boolean", "description": "binaryAvailable" }, "htmlEscape": { "type": "boolean", "description": "htlmEscape" }, "totalTextLength": { "type": "integer", "description": "The total length of the text.", "format": "int64" }, "blank": { "type": "boolean", "description": "blank" } } }