view: int_dbt_prod_changes_by_country { sql_table_name: intelligence.dbt_prod.changes_by_country ;; dimension: country_name { view_label: "Transaction Country" label: "Country Name" type: string sql: ${TABLE}.country_name ;; } dimension: brand_name { view_label: "Orchard/AWAL Toggle" label: "Brand Name" type: string sql: ${TABLE}.brand_name ;; } measure: ytd_streams { view_label: "Streams" label: "YTD Streams" type: sum sql: ${TABLE}.ytd_streams ;; } measure: ytd_streams_1_year { view_label: "Streams" label: "YTD Streams (-1 Year)" type: sum sql: ${TABLE}.ytd_streams_1_year ;; } }