Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmassen-hane committed Jul 26, 2023
1 parent e927830 commit 60382a9
Show file tree
Hide file tree
Showing 2 changed files with 262 additions and 48 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[
{
"name": "full_table_id",
"type": "STRING",
"mode": "RECORD",
"fields": [
{
"name": "sample_date",
"description": "Date of the table (shard-date/date created)",
"type": "DATE",
"mode": "REQURIED"
},
{
"name": "primary_key",
"description": "Array of primary keys that are used to identify records.",
"type": "STRING",
"mode": "REPEATED"
},
{
"name": "row_count",
"description": "Number of rows in the table.",
"type": "INTEGER",
"mode": "REQURIED"
},
{
"name": "distinct_records",
"description": "Number of distinct records in the table, based off of 'primary_key'.",
"type": "INTEGER",
"mode": "REQURIED"
},
{
"name": "no_primary_key",
"description": "Number of records that do not have an entryunder 'primary_key' (None or nulls).",
"type": "INTEGER",
"mode": "REQURIED"
}
]
}
]
Loading

0 comments on commit 60382a9

Please sign in to comment.