Looker · Schema

LookModel

Basic LookML model information

AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization

Properties

Name Type Description
id string Model name/identifier
label string Display label for the model
View JSON Schema on GitHub

JSON Schema

looker-lookmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LookModel",
  "title": "LookModel",
  "type": "object",
  "description": "Basic LookML model information",
  "properties": {
    "id": {
      "type": "string",
      "description": "Model name/identifier",
      "example": "abc123"
    },
    "label": {
      "type": "string",
      "description": "Display label for the model",
      "example": "Example Title"
    }
  }
}