Update Datenbankschema authored by Pollack, Philipp's avatar Pollack, Philipp
Test # Publications
\ No newline at end of file ```
{
"_id": <string>,
"publisher": <Publisher>,
"journal": <Journal>,
"year": <int?>,
"published_date": <string>,
"oa_color": <int?>,
"dim": <PublicationSourceData>,
"wos": <PublicationSourceData>
}
```
# Publisher
```
{
"_id": <string>,
"name": <sring>,
"oa_color": <int?>
}
```
# Journal
```
{
"_id": <string>,
"title": <string>,
"oa_color": <int?>,
"issns": [ <string>, <...> ],
"flags": [ <string>, <...> ],
"agreements": [ <string>, <...> ]
}
```
# PublicationSourceData
```
{
"source_id": <string>,
"organisations": [ <Organisation>, <...> ],
"citation_count": <long?>,
"url": <string>
}
```
# Organisation
```
{
"_id": <string>,
"name": <string>,
"aliases": [ <string>, <...> ],
"acronyms": [ <string>, <...> ],
"type": <string>,
"address": <GridAddress>,
"labels": <GridLabels>,
"relationships": <GridRelationship>,
"corresponding": <bool?>
}
```
# GridAddress
```
{
"city": <string>,
"state": <string>,
"state_code": <string>,
"country": <string>,
"country_code": <string>,
"lat": <double?>,
"lng": <double?>,
"primary": <bool>,
"postcode": <string>,
}
```
# GridLabel
```
{
"label": <string>,
"iso639": <string>
}
```
# GridRelationship
```
{
"type": <string>,
"id": <string>,
"included": <bool?>
}
```
\ No newline at end of file