dbt-selly/models/generated/airbyte_ctes/unibag/suppliers_logo_dimensions_a...

20 lines
742 B
SQL

{{ config(
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
schema = "_airbyte_unibag",
tags = [ "nested-intermediate" ]
) }}
-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema
-- depends_on: {{ ref('suppliers_logo') }}
select
_airbyte_logo_hashid,
{{ json_extract('table_alias', 'dimensions', ['md'], ['md']) }} as md,
{{ json_extract('table_alias', 'dimensions', ['sm'], ['sm']) }} as sm,
_airbyte_ab_id,
_airbyte_emitted_at,
{{ current_timestamp() }} as _airbyte_normalized_at
from {{ ref('suppliers_logo') }} as table_alias
-- dimensions at suppliers/logo/dimensions
where 1 = 1
and dimensions is not null