Qlik Sense Enterprise · Schema
LoginAccessAllocation
AnalyticsBusiness IntelligenceData VisualizationEnterpriseREST API
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| createdDate | string | |
| modifiedDate | string | |
| user | object | |
| tokensUsed | integer | Number of tokens consumed by this login access |
| schemaPath | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LoginAccessAllocation",
"title": "LoginAccessAllocation",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"modifiedDate": {
"type": "string",
"format": "date-time"
},
"user": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"userDirectory": {
"type": "string"
},
"userId": {
"type": "string"
}
}
},
"tokensUsed": {
"type": "integer",
"description": "Number of tokens consumed by this login access"
},
"schemaPath": {
"type": "string"
}
}
}