Skip to content

Commit

Permalink
Fix some types
Browse files Browse the repository at this point in the history
  • Loading branch information
jmelot committed May 23, 2023
1 parent 369d484 commit b220c98
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions schemas/ror.json
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
{
"mode": "NULLABLE",
"name": "postcode",
"type": "INTEGER"
"type": "STRING"
},
{
"mode": "NULLABLE",
Expand All @@ -308,7 +308,7 @@
{
"mode": "REPEATED",
"name": "all",
"type": "INTEGER"
"type": "STRING"
},
{
"mode": "NULLABLE",
Expand Down Expand Up @@ -342,7 +342,7 @@
{
"mode": "REPEATED",
"name": "all",
"type": "INTEGER"
"type": "STRING"
},
{
"mode": "NULLABLE",
Expand Down Expand Up @@ -393,12 +393,12 @@
{
"mode": "REPEATED",
"name": "all",
"type": "INTEGER"
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "preferred",
"type": "INTEGER"
"type": "STRING"
}
],
"mode": "NULLABLE",
Expand Down Expand Up @@ -427,17 +427,34 @@
{
"mode": "REPEATED",
"name": "all",
"type": "INTEGER"
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "preferred",
"type": "INTEGER"
"type": "STRING"
}
],
"mode": "NULLABLE",
"name": "OrgRef",
"type": "RECORD"
},
{
"fields": [
{
"mode": "REPEATED",
"name": "all",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "preferred",
"type": "STRING"
}
],
"mode": "NULLABLE",
"name": "CNRS",
"type": "RECORD"
}
],
"mode": "NULLABLE",
Expand Down

0 comments on commit b220c98

Please sign in to comment.