Generating Base Models
This guide shows how DinoAI Agent creates standardized base models from raw source data by applying consistent naming conventions and formatting rules.
Last updated
Was this helpful?
Was this helpful?
WITH source AS (
SELECT * FROM {{ source('formula_one', 'CIRCUITS') }}
)
SELECT
circuitid AS circuit_id,
circuitref AS circuit_reference,
name AS circuit_name,
location AS location,
country AS country,
lat AS latitude,
lng AS longitude,
alt AS altitude,
url AS circuit_url
FROM source