Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmassen-hane committed Jul 28, 2023
1 parent 3765261 commit 4c59d99
Show file tree
Hide file tree
Showing 2 changed files with 381 additions and 264 deletions.
Original file line number Diff line number Diff line change
@@ -1,39 +1,67 @@
[
{
"name": "name",
"description": "Name of the table.",
"mode": "RECORD"
},
{
"name": "full_table_id",
"description": "The fully qualified table name: project_id.dataset_id.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"
}
]
"mode": "REQURIED"
},
{
"name": "date_created",
"description": "Date of when the table was created.",
"type": "DATE",
"mode": "REQURIED"
},
{
"name": "date_last_updated",
"description": "Date of when the table was modified - obtained from Observatory API DatasetRelease.data_interval_end.",
"type": "DATE",
"mode": "REQURIED"
},
{
"name": "shard",
"description": "If the table is sharded or not.",
"type": "BOOL",
"mode": "REQURIED"
},
{
"name": "date_shard",
"description": "Date from the table shard (if null it is not a sharded table).",
"type": "DATE",
"mode": "NULLABLE"
},
{
"name": "date_checked",
"description": "Date of when this table was checked by the QA workflow.",
"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": "records_with_no_primary_key",
"description": "Number of records that do not have an entry under 'primary_key' (None or nulls).",
"type": "INTEGER",
"mode": "REQURIED"
}
]
Loading

0 comments on commit 4c59d99

Please sign in to comment.