Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions models/staging/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,37 @@ version: 2

models:
- name: stg_customers
description: A staging table containing customer data intended for training and
validation models.
config:
tags: ["staging", "PII"]
columns:
- name: customer_id

- name: stg_orders
description: This entity represents a staging area for order data, capturing validated
and trained information for further processing.
config:
tags: ["staging", "finance"]
columns:
- name: order_id
- name: status

- name: stg_payments
description: A staging table containing all the payment transactions that are
being processed and stored before they are finalized. It serves as an intermediate
step in the payment processing workflow, allowing for quality checks and validations
before the data is moved to production.
config:
tags: ["staging", "finance"]
columns:
- name: payment_id
- name: payment_method

- name: stg_signups
description: This table asset contains data related to user sign-ups, including
personal information that identifies users. It is used for staging and validation
purposes.
config:
tags: ["staging", "PII"]
columns:
Expand Down