Skip to content

Commit

Permalink
Update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jdddog committed Jun 12, 2023
1 parent ed88eca commit 10ec14d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
{
"name": "issn",
"type": "STRING",
"mode": "NULLABLE"
"mode": "REPEATED"
},
{
"name": "display_name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,21 @@
},
{
"name": "parent_publisher",
"type": "STRING",
"type": "RECORD",
"mode": "NULLABLE",
"description": "An OpenAlex ID linking to the direct parent of the publisher. This will be null if the publisher's hierarchy_level is 0."
"fields": [
{
"name": "id",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "display_name",
"type": "STRING",
"mode": "NULLABLE"
}
],
"description": "An OpenAlex ID linking to the direct parent of the publisher and display name. This will be null if the publisher's hierarchy_level is 0."
},
{
"name": "roles",
Expand Down

0 comments on commit 10ec14d

Please sign in to comment.