Nuix · Schema
DirectoryAccess
Schema for DirectoryAccess in Nuix REST API
ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence
Properties
| Name | Type | Description |
|---|---|---|
| path | string | The path to the directory. |
| readPermission | boolean | A boolean indicating whether the directory has read permission. |
| requiresRead | boolean | A boolean indicating whether the directory requires read permission. |
| writePermission | boolean | A boolean indicating whether the directory has write permission. |
| requiresWrite | boolean | A boolean indicating whether the directory requires write permission. |
| executePermission | boolean | A boolean indicating whether the directory has execute permission. |
| requiresExecute | boolean | A boolean indicating whether the directory requires execute permission. |
| ok | boolean | Boolean indicating the overall directory health. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-directoryaccess.json",
"title": "DirectoryAccess",
"description": "Schema for DirectoryAccess in Nuix REST API",
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The path to the directory."
},
"readPermission": {
"type": "boolean",
"description": "A boolean indicating whether the directory has read permission."
},
"requiresRead": {
"type": "boolean",
"description": "A boolean indicating whether the directory requires read permission."
},
"writePermission": {
"type": "boolean",
"description": "A boolean indicating whether the directory has write permission."
},
"requiresWrite": {
"type": "boolean",
"description": "A boolean indicating whether the directory requires write permission."
},
"executePermission": {
"type": "boolean",
"description": "A boolean indicating whether the directory has execute permission."
},
"requiresExecute": {
"type": "boolean",
"description": "A boolean indicating whether the directory requires execute permission."
},
"ok": {
"type": "boolean",
"description": "Boolean indicating the overall directory health."
}
}
}