22 lines
694 B
YAML
22 lines
694 B
YAML
model:
|
|
name: raw.raw_psd_alldata # schema.table_name format
|
|
kind: EXTERNAL # This is the key part!
|
|
path: ../../../../extract/psdonline/src/psdonline/data/**/*.zip # Path relative to the project root
|
|
format: csv # Specify the file format
|
|
dialect: duckdb # The dialect that will read this file
|
|
options:
|
|
auto_detect: true
|
|
columns:
|
|
commodity_code: string
|
|
commodity_description: string
|
|
country_code: string
|
|
country_name: string
|
|
market_year: int
|
|
calendar_year: int
|
|
month: int
|
|
attribute_id: string
|
|
attribute_description: string
|
|
unit_id: string
|
|
unit_description: string
|
|
value: float
|