You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a data scientist I want all of our columns to be documented in dbt so that future maintainers and users of the warehouse will understand what each column is and how it should be used. I want to follow what's been done in our warehouse for GTFS and use that documentation pattern for NTD.
Check that anchors are being used appropriately: if there's a common field with equivalent description, an anchor should be used; if there's a field with the same name that doesn't use the anchor, consider using the anchor and overriding the part that's different or adding a comment about why this instance can't use the anchor
Review field documentation and evaluate for completeness/correctness
-- identify columns missing documentation
SELECT *
FROM `cal-itp-data-infra`.`mart_ntd`.INFORMATION_SCHEMA.COLUMN_FIELD_PATHS
WHERE description IS NULL
ORDER BY table_name
The text was updated successfully, but these errors were encountered:
As a data scientist I want all of our columns to be documented in dbt so that future maintainers and users of the warehouse will understand what each column is and how it should be used. I want to follow what's been done in our warehouse for GTFS and use that documentation pattern for NTD.
mart_gtfs
& review YAML #3101mart_ntd
in NTD Modeling – Mart – Remaining Tables in Dataset #3405.Acceptance Criteria:
mart_ntd
currently lacking documentation (see query below)The text was updated successfully, but these errors were encountered: