Qlik Sense Enterprise · Schema
UserDirectory
AnalyticsBusiness IntelligenceData VisualizationEnterpriseREST API
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| createdDate | string | |
| modifiedDate | string | |
| modifiedByUserName | string | |
| name | string | User directory name |
| type | string | User directory connector type (e.g., Active Directory, LDAP) |
| configured | boolean | Whether the user directory is fully configured |
| operational | object | |
| tags | array | |
| customProperties | array | |
| privileges | array | |
| schemaPath | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserDirectory",
"title": "UserDirectory",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"modifiedDate": {
"type": "string",
"format": "date-time"
},
"modifiedByUserName": {
"type": "string"
},
"name": {
"type": "string",
"description": "User directory name"
},
"type": {
"type": "string",
"description": "User directory connector type (e.g., Active Directory, LDAP)"
},
"configured": {
"type": "boolean",
"description": "Whether the user directory is fully configured"
},
"operational": {
"type": "object",
"properties": {
"lastSync": {
"type": "string",
"format": "date-time"
},
"syncStatus": {
"type": "integer"
}
}
},
"tags": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TagCondensed"
}
},
"customProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomPropertyValue"
}
},
"privileges": {
"type": "array",
"items": {
"type": "string"
}
},
"schemaPath": {
"type": "string"
}
}
}