Nuix · Schema

NuixItemType

Schema for NuixItemType in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
name string Gets the name of this type.
localisedName string Gets the name of this type, localised appropriately for display to users.
preferredExtension string Gets the preferred file extension.
kind string Gets the kind.
count integer Gets the count of items of this kind.
View JSON Schema on GitHub

JSON Schema

nuix-rest-nuixitemtype.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-nuixitemtype.json",
  "title": "NuixItemType",
  "description": "Schema for NuixItemType in Nuix REST API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Gets the name of this type."
    },
    "localisedName": {
      "type": "string",
      "description": "Gets the name of this type, localised appropriately for display to users."
    },
    "preferredExtension": {
      "type": "string",
      "description": "Gets the preferred file extension."
    },
    "kind": {
      "type": "string",
      "description": "Gets the kind."
    },
    "count": {
      "type": "integer",
      "description": "Gets the count of items of this kind.",
      "format": "int64"
    }
  }
}