Nuix · Schema

ItemTextResponse

Schema for ItemTextResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
text string text
binaryAvailable boolean binaryAvailable
htmlEscape boolean htlmEscape
totalTextLength integer The total length of the text.
blank boolean blank
View JSON Schema on GitHub

JSON Schema

nuix-rest-itemtextresponse.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-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"
    }
  }
}