24 lines
1.2 KiB
SQL
24 lines
1.2 KiB
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') }}
|
|
select
|
|
_airbyte_suppliers_hashid,
|
|
{{ json_extract_scalar(adapter.quote('location'), ['ward'], ['ward']) }} as ward,
|
|
{{ json_extract_scalar(adapter.quote('location'), ['address'], ['address']) }} as address,
|
|
{{ json_extract_scalar(adapter.quote('location'), ['district'], ['district']) }} as district,
|
|
{{ json_extract_scalar(adapter.quote('location'), ['location'], ['location']) }} as {{ adapter.quote('location') }},
|
|
{{ json_extract_scalar(adapter.quote('location'), ['province'], ['province']) }} as province,
|
|
{{ json_extract_scalar(adapter.quote('location'), ['fullAddress'], ['fullAddress']) }} as fulladdress,
|
|
_airbyte_ab_id,
|
|
_airbyte_emitted_at,
|
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
|
from {{ ref('suppliers') }} as table_alias
|
|
-- location at suppliers/location
|
|
where 1 = 1
|
|
and {{ adapter.quote('location') }} is not null
|
|
|