Nuix · Schema

KindTypeResponse

Schema for KindTypeResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
itemKind string Gets the kind.
localisedItemKind string Gets the name of this type, localised appropriately for display to users.
itemTypes array Gets the collection of all types which are of this kind.
View JSON Schema on GitHub

JSON Schema

nuix-rest-kindtyperesponse.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-kindtyperesponse.json",
  "title": "KindTypeResponse",
  "description": "Schema for KindTypeResponse in Nuix REST API",
  "type": "object",
  "properties": {
    "itemKind": {
      "type": "string",
      "description": "Gets the kind."
    },
    "localisedItemKind": {
      "type": "string",
      "description": "Gets the name of this type, localised appropriately for display to users."
    },
    "itemTypes": {
      "type": "array",
      "description": "Gets the collection of all types which are of this kind.",
      "items": {
        "$ref": "#/components/schemas/NuixItemType"
      }
    }
  }
}