Nuix · Schema

PasswordDiscoverySettings

Schema for PasswordDiscoverySettings in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
mode string Sets password discovery settings to use for encrypted items.
wordList string The name of a word list accessible in the system. If the mode is set to "word-list", then this word-list will be used as the basis for password discovery
View JSON Schema on GitHub

JSON Schema

nuix-rest-passworddiscoverysettings.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-passworddiscoverysettings.json",
  "title": "PasswordDiscoverySettings",
  "description": "Schema for PasswordDiscoverySettings in Nuix REST API",
  "type": "object",
  "properties": {
    "mode": {
      "type": "string",
      "description": "Sets password discovery settings to use for encrypted items.",
      "enum": [
        "none",
        "word_list"
      ]
    },
    "wordList": {
      "type": "string",
      "description": "The name of a word list accessible in the system. If the mode is set to \"word-list\", then this word-list will be used as the basis for password discovery"
    }
  }
}