Looker · Schema
Look
A Look is a saved query with a visualization. Looks can be shared, embedded, scheduled for delivery, and added to dashboards as tiles.
AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique numeric identifier for this Look |
| title | string | Display title of the Look |
| description | string | Description of the Look's purpose |
| content_metadata_id | integer | ID of the content metadata record |
| query_id | integer | ID of the query associated with this Look |
| space_id | string | ID of the space (folder) containing this Look |
| folder_id | string | ID of the folder containing this Look |
| user_id | integer | ID of the user who created this Look |
| public | boolean | Whether this Look is publicly accessible |
| is_run_on_load | boolean | Whether the query runs automatically when the Look is loaded |
| created_at | string | Timestamp when the Look was created |
| updated_at | string | Timestamp when the Look was last updated |
| deleted_at | string | Timestamp when the Look was soft-deleted |
| deleted | boolean | Whether this Look has been soft-deleted |
| last_accessed_at | string | Timestamp when the Look was last viewed |
| view_count | integer | Number of times the Look has been viewed |
| favorite_count | integer | Number of users who have favorited this Look |
| url | string | Relative URL path for this Look |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Look",
"type": "object",
"description": "A Look is a saved query with a visualization. Looks can be shared, embedded, scheduled for delivery, and added to dashboards as tiles.",
"properties": {
"id": {
"type": "integer",
"description": "Unique numeric identifier for this Look"
},
"title": {
"type": "string",
"description": "Display title of the Look"
},
"description": {
"type": "string",
"description": "Description of the Look's purpose"
},
"content_metadata_id": {
"type": "integer",
"description": "ID of the content metadata record"
},
"query_id": {
"type": "integer",
"description": "ID of the query associated with this Look"
},
"space_id": {
"type": "string",
"description": "ID of the space (folder) containing this Look"
},
"folder_id": {
"type": "string",
"description": "ID of the folder containing this Look"
},
"user_id": {
"type": "integer",
"description": "ID of the user who created this Look"
},
"public": {
"type": "boolean",
"description": "Whether this Look is publicly accessible"
},
"is_run_on_load": {
"type": "boolean",
"description": "Whether the query runs automatically when the Look is loaded"
},
"created_at": {
"type": "string",
"description": "Timestamp when the Look was created"
},
"updated_at": {
"type": "string",
"description": "Timestamp when the Look was last updated"
},
"deleted_at": {
"type": "string",
"description": "Timestamp when the Look was soft-deleted"
},
"deleted": {
"type": "boolean",
"description": "Whether this Look has been soft-deleted"
},
"last_accessed_at": {
"type": "string",
"description": "Timestamp when the Look was last viewed"
},
"view_count": {
"type": "integer",
"description": "Number of times the Look has been viewed"
},
"favorite_count": {
"type": "integer",
"description": "Number of users who have favorited this Look"
},
"url": {
"type": "string",
"description": "Relative URL path for this Look"
}
}
}