Update Datenbankschema authored by Pollack, Philipp's avatar Pollack, Philipp
...@@ -66,17 +66,18 @@ ...@@ -66,17 +66,18 @@
``` ```
{ {
"_id": <string>, "_id": <string>,
"grid_id": <string>
"name": <string>, "name": <string>,
"aliases": [ <string>, <...> ], "aliases": [ <string>, <...> ],
"acronyms": [ <string>, <...> ], "acronyms": [ <string>, <...> ],
"type": <string>, "type": <string>,
"address": <GridAddress>, "address": <RorAddress>,
"labels": <GridLabels>, "labels": <RorLabels>,
"relationships": <GridRelationship>, "relationships": <RorRelationship>,
"corresponding": <bool?> "corresponding": <bool?>
} }
``` ```
# GridAddress # RorAddress
``` ```
{ {
"city": <string>, "city": <string>,
...@@ -90,14 +91,14 @@ ...@@ -90,14 +91,14 @@
"postcode": <string>, "postcode": <string>,
} }
``` ```
# GridLabel # RorLabel
``` ```
{ {
"label": <string>, "label": <string>,
"iso639": <string> "iso639": <string>
} }
``` ```
# GridRelationship # RorRelationship
``` ```
{ {
"type": <string>, "type": <string>,
... ...
......