Skip to content

Commit

Permalink
Completed Chapter 5 Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
vinooganesh committed Jul 30, 2023
1 parent 3b09224 commit 93d5ca7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 36 deletions.
15 changes: 14 additions & 1 deletion chapter5/models/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,26 @@ models:
columns:
- name: adid
description: "The advertisting ID for this data point. Every value in column should be a distinct ad_id. This value is required."
tests:
- unique
- not_null
- name: latitude
description: "The latitude of the data point. This value is required."
tests:
- not_null
- name: longitude
description: "The longitude of the data point. This value is required."
tests:
- not_null
- name: city
description: "The city of the data point. This value is required."
tests:
- not_null
- name: eventdate
description: "The date of the data point. This value is required."
tests:
- not_null
- name: cohort
description: "The cohort of the adid. Theree are only 6 cohorts, each named either 'one', 'two', 'three', 'four', 'five', or 'six'. This value is required. Each cohort should have a maximum of 110 distinct adids."
description: "The cohort of the adid. Theree are only 6 cohorts, each named either 'one', 'two', 'three', 'four', 'five', or 'six'. This value is required. Each cohort should have a maximum of 110 distinct adids."
tests:
- not_null
35 changes: 0 additions & 35 deletions chapter5/models/schema_completed.yml

This file was deleted.

0 comments on commit 93d5ca7

Please sign in to comment.