Looker · Schema
WriteLookWithQuery
Writable fields for creating or updating a Look
AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization
Properties
| Name | Type | Description |
|---|---|---|
| title | string | Display title |
| description | string | Description of the Look |
| space_id | string | Space (folder) ID to place the Look in |
| folder_id | string | Folder ID to place the Look in |
| query_id | integer | ID of the query to use |
| public | boolean | Whether the Look is public |
| is_run_on_load | boolean | Whether to auto-run the query on load |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "WriteLookWithQuery",
"type": "object",
"description": "Writable fields for creating or updating a Look",
"properties": {
"title": {
"type": "string",
"description": "Display title"
},
"description": {
"type": "string",
"description": "Description of the Look"
},
"space_id": {
"type": "string",
"description": "Space (folder) ID to place the Look in"
},
"folder_id": {
"type": "string",
"description": "Folder ID to place the Look in"
},
"query_id": {
"type": "integer",
"description": "ID of the query to use"
},
"public": {
"type": "boolean",
"description": "Whether the Look is public"
},
"is_run_on_load": {
"type": "boolean",
"description": "Whether to auto-run the query on load"
}
}
}