20 lines
748 B
SQL
20 lines
748 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('events') }}
|
|
select
|
|
_airbyte_events_hashid,
|
|
{{ json_extract_scalar('notice', ['label'], ['label']) }} as {{ adapter.quote('label') }},
|
|
{{ json_extract_scalar('notice', ['value'], ['value']) }} as {{ adapter.quote('value') }},
|
|
_airbyte_ab_id,
|
|
_airbyte_emitted_at,
|
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
|
from {{ ref('events') }} as table_alias
|
|
-- notice at events/notice
|
|
where 1 = 1
|
|
and notice is not null
|
|
|