Skip to content

Commit

Permalink
Update schemas and ingest functions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmassen-hane committed May 31, 2023
1 parent c19dbf8 commit eaa2928
Show file tree
Hide file tree
Showing 3 changed files with 147 additions and 1,349 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,51 @@
},
{
"name": "ReferenceList",
"mode": "NULLABLE",
"type": "STRING"
"mode": "REPEATED",
"type": "RECORD",
"fields": [
{
"name": "Title",
"mode": "NULLABLE",
"type": "STRING"
},
{
"name": "Reference",
"mode": "REPEATED",
"type": "RECORD",
"fields": [
{
"name": "ArticleIdList",
"mode": "NULLABLE",
"type": "RECORD",
"fields": [
{
"name": "ArticleId",
"mode": "REPEATED",
"type": "RECORD",
"fields": [
{
"name": "IdType",
"mode": "NULLABLE",
"type": "STRING"
},
{
"name": "value",
"mode": "NULLABLE",
"type": "STRING"
}
]
}
]
},
{
"name": "Citation",
"mode": "NULLABLE",
"type": "STRING"
}
]
}
]
}
]
}
Expand Down
Loading

0 comments on commit eaa2928

Please sign in to comment.