engine_create_hypercube
Generate hypercubes for structured data analysis by specifying dimensions, measures, and row limits within Qlik Sense applications.
Instructions
Create hypercube for data analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | Application ID | |
dimensions | Yes | List of dimension fields | |
max_rows | No | Maximum rows to return | |
measures | Yes | List of measure expressions |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"description": "Application ID",
"type": "string"
},
"dimensions": {
"description": "List of dimension fields",
"items": {
"type": "string"
},
"type": "array"
},
"max_rows": {
"default": 1000,
"description": "Maximum rows to return",
"type": "integer"
},
"measures": {
"description": "List of measure expressions",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"app_id",
"dimensions",
"measures"
],
"type": "object"
}