From 486dfb4ea483f10cb650790e9508d8eb86dcafe6 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 14 Jun 2022 15:24:46 -0500 Subject: [PATCH 01/49] update labels and validation actions --- .github/workflows/update_labels.yml | 8 ++++---- .github/workflows/validate.yml | 9 +++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/update_labels.yml b/.github/workflows/update_labels.yml index 1cc300c09..7f77cb7b5 100644 --- a/.github/workflows/update_labels.yml +++ b/.github/workflows/update_labels.yml @@ -7,7 +7,7 @@ on: description: Name of parent directory containing records to generate relationships for. Needed only if different from branch name. jobs: - generate-relationships: + update-labels: runs-on: ubuntu-latest steps: - name: checkout @@ -26,12 +26,12 @@ jobs: run: echo "WORKING_DIR=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV - name: Update labels in related records id: updatelabels - if: ${{ steps.genrelshp.outcome == 'success'}} working-directory: ${{ env.WORKING_DIR }} run: | python -m pip install --upgrade pip - pip install requests==2.23.0 - curl https://raw.githubusercontent.com/ror-community/ror-api/dev/rorapi/management/commands/update_related.py + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/requirements.txt -o requirements.txt + pip install -r requirements.txt + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/update_related.py -o update_related.py python update_related.py - name: commit changed files if: ${{ steps.updatelabels.outcome == 'success'}} diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 847bd5d4a..53ce72c19 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -41,13 +41,14 @@ jobs: cd validation-suite python -m pip install --upgrade pip pip install -r requirements.txt - if [[ ${{ github.event.inputs.with-relationship }} == "true" ]]; then - if [[ -f "../${{ env.WORKING_DIR }}/**relationships.csv" ]]; then - python run_validations.py -i ../files -f ../${{ env.WORKING_DIR }}/**relationships.csv -p ../files/ + ls ../files/ + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ else python run_validations.py -i ../files -p ../files/ fi - elif [[ ${{ github.event.inputs.with-relationship }} == "false" ]]; then + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then python run_validations.py -i ../files fi - name: Notify Slack From 7c0e5e9803fcac4e60e823f6a04bedecda535f89 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 13 Sep 2022 15:31:08 -0500 Subject: [PATCH 02/49] update dev workflows to use validation dev branch --- .github/workflows/dev_manual_index.yml | 1 + .github/workflows/dev_pull_request.yml | 1 + .github/workflows/generate_relationships.yml | 4 ++-- .github/workflows/validate.yml | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev_manual_index.yml b/.github/workflows/dev_manual_index.yml index 152f012f8..b0767a33b 100644 --- a/.github/workflows/dev_manual_index.yml +++ b/.github/workflows/dev_manual_index.yml @@ -49,6 +49,7 @@ jobs: with: repository: ror-community/validation-suite path: validation-suite + ref: dev - name: Validate files id: validatefiles run: | diff --git a/.github/workflows/dev_pull_request.yml b/.github/workflows/dev_pull_request.yml index dda7ede8f..ce32121b0 100644 --- a/.github/workflows/dev_pull_request.yml +++ b/.github/workflows/dev_pull_request.yml @@ -50,6 +50,7 @@ jobs: with: repository: ror-community/validation-suite path: validation-suite + ref: dev - name: Validate files id: validatefiles run: | diff --git a/.github/workflows/generate_relationships.yml b/.github/workflows/generate_relationships.yml index 3e4799e84..bdea98a26 100644 --- a/.github/workflows/generate_relationships.yml +++ b/.github/workflows/generate_relationships.yml @@ -31,8 +31,8 @@ jobs: python -m pip install --upgrade pip pip install requests==2.23.0 pip install git+https://github.com/ror-community/update_address.git - curl https://raw.githubusercontent.com/ror-community/ror-api/dev/rorapi/management/commands/generaterelationships.py -o generaterelationships.py - python generaterelationships.py relationships.csv + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/generate_relationships/generate_relationships.py -o generate_relationships.py + python generate_relationships.py relationships.csv - name: commit error file if: ${{ steps.genrelshp.outcome != 'success'}} working-directory: ${{ env.WORKING_DIR }} diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 53ce72c19..2c61e165c 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -27,6 +27,7 @@ jobs: with: repository: ror-community/validation-suite path: validation-suite + ref: dev - name: Get directory name if: "${{ github.event.inputs.directory-name != '' }}" run: echo "WORKING_DIR=${{ github.event.inputs.directory-name }}" >> $GITHUB_ENV From ced588a616d26b7911761447e9855094a228f4e5 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 14 Sep 2022 12:23:39 -0500 Subject: [PATCH 03/49] add records for testing status --- test-org-status/00rq8ty33.json | 88 +++++++++++++++++++++++++++++++ test-org-status/02yrzg710.json | 71 +++++++++++++++++++++++++ test-org-status/03ybaf311.json | 73 +++++++++++++++++++++++++ test-org-status/04wxnsj81.json | 86 ++++++++++++++++++++++++++++++ test-org-status/05tjkdd50.json | 73 +++++++++++++++++++++++++ test-org-status/relationships.csv | 6 +++ 6 files changed, 397 insertions(+) create mode 100644 test-org-status/00rq8ty33.json create mode 100644 test-org-status/02yrzg710.json create mode 100644 test-org-status/03ybaf311.json create mode 100644 test-org-status/04wxnsj81.json create mode 100644 test-org-status/05tjkdd50.json create mode 100644 test-org-status/relationships.csv diff --git a/test-org-status/00rq8ty33.json b/test-org-status/00rq8ty33.json new file mode 100644 index 000000000..868c92a58 --- /dev/null +++ b/test-org-status/00rq8ty33.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00rq8ty33", + "name": "National Research Centre for Banana", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Indian Council of Agricultural Research", + "type": "Parent", + "id": "https://ror.org/04fw54a43" + } + ], + "addresses": [ + { + "lat": 10.8155, + "lng": 78.69651, + "state": null, + "state_code": null, + "country_geonames_id": 1269750, + "city": "Tiruchi", + "geonames_city": { + "id": 1254388, + "city": "Tiruchi", + "geonames_admin1": { + "name": "Tamil Nadu", + "ascii_name": "Tamil Nadu", + "id": 1255053, + "code": "IN.25" + }, + "geonames_admin2": { + "name": "Tiruchirappalli", + "id": 1254389, + "ascii_name": "Tiruchirappalli", + "code": "IN.25.614" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "links": [ + "http://www.nrcb.res.in/" + ], + "aliases": [], + "acronyms": [ + "NRCB" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1768 7371" + ] + }, + "GRID": { + "preferred": "grid.465009.e", + "all": "grid.465009.e" + } + } +} \ No newline at end of file diff --git a/test-org-status/02yrzg710.json b/test-org-status/02yrzg710.json new file mode 100644 index 000000000..0f29b9df6 --- /dev/null +++ b/test-org-status/02yrzg710.json @@ -0,0 +1,71 @@ +{ + "ip_addresses": [], + "aliases": [ + "Active" + ], + "acronyms": [ + "TNRA" + ], + "links": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Test new record active", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "name": "Lower Saxony", + "ascii_name": "Lower Saxony", + "id": 2862926, + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02yrzg710", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/test-org-status/03ybaf311.json b/test-org-status/03ybaf311.json new file mode 100644 index 000000000..1c23561cd --- /dev/null +++ b/test-org-status/03ybaf311.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Inactive successor" + ], + "acronyms": [ + "TNRIWS" + ], + "links": [ + "https://harvardplanning.emuseum.com/sites/316/cruft-laboratory" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Test new record inactive with successor", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cruft", + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "name": "Lower Saxony", + "ascii_name": "Lower Saxony", + "id": 2862926, + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03ybaf311", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/test-org-status/04wxnsj81.json b/test-org-status/04wxnsj81.json new file mode 100644 index 000000000..33d8e0ecd --- /dev/null +++ b/test-org-status/04wxnsj81.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04wxnsj81", + "name": "DataCite", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "name": "Lower Saxony", + "ascii_name": "Lower Saxony", + "id": 2862926, + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "links": [ + "https://www.datacite.org" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/DataCite", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9229 9539", + "all": [ + "0000 0004 9229 9539" + ] + }, + "Wikidata": { + "preferred": "Q821542", + "all": [ + "Q821542" + ] + }, + "GRID": { + "preferred": "grid.475826.a", + "all": "grid.475826.a" + } + } +} \ No newline at end of file diff --git a/test-org-status/05tjkdd50.json b/test-org-status/05tjkdd50.json new file mode 100644 index 000000000..157eb2f16 --- /dev/null +++ b/test-org-status/05tjkdd50.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Inactive" + ], + "acronyms": [ + "TNRINS" + ], + "links": [ + "https://harvardplanning.emuseum.com/sites/316/cruft-laboratory" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Test new record inactive no successor", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cruft", + "addresses": [ + { + "lat": 52.37052, + "lng": 9.73322, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Hanover", + "geonames_city": { + "id": 2910831, + "city": "Hanover", + "geonames_admin1": { + "name": "Lower Saxony", + "ascii_name": "Lower Saxony", + "id": 2862926, + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05tjkdd50", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/test-org-status/relationships.csv b/test-org-status/relationships.csv new file mode 100644 index 000000000..fe592f317 --- /dev/null +++ b/test-org-status/relationships.csv @@ -0,0 +1,6 @@ +Name of org in Record ID,Record ID,Related ID,Name of org in Related ID,Relationship of Related ID to Record ID,Current location of Related ID +Test new record inactive with successor,https://ror.org/03ybaf311,https://ror.org/00jmfr291,University of Michigan–Ann Arbor,Successor,Production +DataCite,https://ror.org/04wxnsj81,https://ror.org/02yrzg710,Test record active,Successor,Release +Test record active,https://ror.org/02yrzg710,https://ror.org/04wxnsj81,DataCite,Predecessor,Release + +python manage.py setup v1.5-2022-08-31-ror-data \ No newline at end of file From 962b9c7bfd70671d64faed7b9354fadd4921abc8 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 14 Sep 2022 12:27:04 -0500 Subject: [PATCH 04/49] fix file path in validate workflow --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 2c61e165c..5bef6418d 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -38,7 +38,7 @@ jobs: id: validatefiles run: | mkdir files - cp ./${{ env.WORKING_DIR }}/*/*.json files/ + cp ./${{ env.WORKING_DIR }}/*.json files/ cd validation-suite python -m pip install --upgrade pip pip install -r requirements.txt From 43c4e22739a8737b85492d6c2cdc951010bab8ad Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 14 Sep 2022 12:31:24 -0500 Subject: [PATCH 05/49] remove errant python command from file --- test-org-status/relationships.csv | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test-org-status/relationships.csv b/test-org-status/relationships.csv index fe592f317..ad4cebccf 100644 --- a/test-org-status/relationships.csv +++ b/test-org-status/relationships.csv @@ -1,6 +1,4 @@ Name of org in Record ID,Record ID,Related ID,Name of org in Related ID,Relationship of Related ID to Record ID,Current location of Related ID Test new record inactive with successor,https://ror.org/03ybaf311,https://ror.org/00jmfr291,University of Michigan–Ann Arbor,Successor,Production DataCite,https://ror.org/04wxnsj81,https://ror.org/02yrzg710,Test record active,Successor,Release -Test record active,https://ror.org/02yrzg710,https://ror.org/04wxnsj81,DataCite,Predecessor,Release - -python manage.py setup v1.5-2022-08-31-ror-data \ No newline at end of file +Test record active,https://ror.org/02yrzg710,https://ror.org/04wxnsj81,DataCite,Predecessor,Release \ No newline at end of file From 83f123733e9839209590f47113dd9d2d1bd59a9e Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 14 Sep 2022 17:34:02 +0000 Subject: [PATCH 06/49] Apply relationship changes to files --- test-org-status/02yrzg710.json | 8 +++++++- test-org-status/03ybaf311.json | 8 +++++++- test-org-status/04wxnsj81.json | 8 +++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/test-org-status/02yrzg710.json b/test-org-status/02yrzg710.json index 0f29b9df6..c859f6a80 100644 --- a/test-org-status/02yrzg710.json +++ b/test-org-status/02yrzg710.json @@ -63,7 +63,13 @@ ], "external_ids": {}, "established": null, - "relationships": [], + "relationships": [ + { + "label": "DataCite", + "type": "Predecessor", + "id": "https://ror.org/04wxnsj81" + } + ], "email_address": null, "id": "https://ror.org/02yrzg710", "labels": [], diff --git a/test-org-status/03ybaf311.json b/test-org-status/03ybaf311.json index 1c23561cd..34e6ab507 100644 --- a/test-org-status/03ybaf311.json +++ b/test-org-status/03ybaf311.json @@ -65,7 +65,13 @@ ], "external_ids": {}, "established": null, - "relationships": [], + "relationships": [ + { + "label": null, + "type": "Successor", + "id": "https://ror.org/00jmfr291" + } + ], "email_address": null, "id": "https://ror.org/03ybaf311", "labels": [], diff --git a/test-org-status/04wxnsj81.json b/test-org-status/04wxnsj81.json index 33d8e0ecd..795be4605 100644 --- a/test-org-status/04wxnsj81.json +++ b/test-org-status/04wxnsj81.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "Test new record active", + "type": "Successor", + "id": "https://ror.org/02yrzg710" + } + ], "addresses": [ { "lat": 52.37052, From 8a0e81777f06984c002aade8fb90467cacfd98ed Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 14 Sep 2022 17:56:43 +0000 Subject: [PATCH 07/49] Apply relationship changes to files --- test-org-status/03ybaf311.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-org-status/03ybaf311.json b/test-org-status/03ybaf311.json index 34e6ab507..8622b0292 100644 --- a/test-org-status/03ybaf311.json +++ b/test-org-status/03ybaf311.json @@ -67,7 +67,7 @@ "established": null, "relationships": [ { - "label": null, + "label": "University of Michigan–Ann Arbor", "type": "Successor", "id": "https://ror.org/00jmfr291" } From f6814af25ab1cfe927b08bbcfa75a2c4005c3a3f Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 27 Sep 2022 09:25:52 -0500 Subject: [PATCH 08/49] add remove relationships action --- .github/workflows/remove_relationships.yml | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .github/workflows/remove_relationships.yml diff --git a/.github/workflows/remove_relationships.yml b/.github/workflows/remove_relationships.yml new file mode 100644 index 000000000..f2ca7c08c --- /dev/null +++ b/.github/workflows/remove_relationships.yml @@ -0,0 +1,65 @@ +name: Remove relationships to inactive records +on: + workflow_dispatch: + inputs: + directory-name: + type: string + description: Name of parent directory containing new/updated records with inactive statuses. Needed only if different from branch name. + +jobs: + remove-relationships: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v2 + with: + ref: ${{ github.event.ref }} + - name: Set up Python environment + uses: actions/setup-python@v2 + with: + python-version: "3.8" + - name: Get directory name + if: "${{ github.event.inputs.directory-name != '' }}" + run: echo "WORKING_DIR=${{ github.event.inputs.directory-name }}" >> $GITHUB_ENV + - name: Get branch name + if: "${{ github.event.inputs.directory-name == '' }}" + run: echo "WORKING_DIR=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV + - name: Remove relationships + id: remrelshp + working-directory: ${{ env.WORKING_DIR }} + run: | + python -m pip install --upgrade pip + pip install requests==2.23.0 + pip install git+https://github.com/ror-community/update_address.git + curl https://raw.githubusercontent.com/ror-community/curation_ops/main/remove_relationships/remove_relationships.py -o remove_relationships.py + python remove_relationships.py relationships.csv + - name: commit error file + if: ${{ steps.remrelshp.outcome != 'success'}} + working-directory: ${{ env.WORKING_DIR }} + run: | + echo "ERRORS found for some records:" + cat relationship_errors.log + - name: commit changed files + if: ${{ steps.remrelshp.outcome == 'success'}} + uses: stefanzweifel/git-auto-commit-action@v4 + with: + file_pattern: ${{ env.WORKING_DIR }}/**.json + commit_message: Apply relationship changes to files + - name: Set env variable for notification + if: always() + run: | + if [[ ${{ steps.remrelshp.outcome }} == 'success' ]]; then + echo "relationship_status=SUCCESS" >> $GITHUB_ENV + else + echo "relationship_status=FAILED" >> $GITHUB_ENV + fi + - name: Notify Slack + if: always() + uses: edge/simple-slack-notify@master + env: + SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} + VALIDATION_STATUS: ${{ env.relationship_status }} + with: + channel: '#ror-curation-releases' + color: 'good' + text: 'DEV relationship removal status: ${env.VALIDATION_STATUS}. Branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Directory: ${{ env.WORKING_DIR }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID} for more details' From f8211200a9a1efd71e4f2196404c8eb1991c88a1 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 27 Sep 2022 14:36:33 +0000 Subject: [PATCH 09/49] Apply relationship changes to files --- test-org-status/02yrzg710.json | 8 +- test-org-status/updates/04fw54a43.json | 547 +++++++++++++++++++++++++ 2 files changed, 548 insertions(+), 7 deletions(-) create mode 100644 test-org-status/updates/04fw54a43.json diff --git a/test-org-status/02yrzg710.json b/test-org-status/02yrzg710.json index c859f6a80..0f29b9df6 100644 --- a/test-org-status/02yrzg710.json +++ b/test-org-status/02yrzg710.json @@ -63,13 +63,7 @@ ], "external_ids": {}, "established": null, - "relationships": [ - { - "label": "DataCite", - "type": "Predecessor", - "id": "https://ror.org/04wxnsj81" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/02yrzg710", "labels": [], diff --git a/test-org-status/updates/04fw54a43.json b/test-org-status/updates/04fw54a43.json new file mode 100644 index 000000000..e4196c6c0 --- /dev/null +++ b/test-org-status/updates/04fw54a43.json @@ -0,0 +1,547 @@ +{ + "id": "https://ror.org/04fw54a43", + "name": "Indian Council of Agricultural Research", + "email_address": "", + "ip_addresses": [], + "established": 1929, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Central Arid Zone Research Institute", + "type": "Child", + "id": "https://ror.org/04298em06" + }, + { + "label": "Central Avian Research Institute", + "type": "Child", + "id": "https://ror.org/00gsmyw97" + }, + { + "label": "Central Citrus Research Institute", + "type": "Child", + "id": "https://ror.org/03fv7j188" + }, + { + "label": "Central Coastal Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/00n1gdp39" + }, + { + "label": "Central Inland Fisheries Research Institute", + "type": "Child", + "id": "https://ror.org/04gtdp803" + }, + { + "label": "Central Institute For Subtropical Horticulture", + "type": "Child", + "id": "https://ror.org/0128gh156" + }, + { + "label": "Central Institute for Cotton Research", + "type": "Child", + "id": "https://ror.org/03cbgzw80" + }, + { + "label": "Central Institute for Research on Buffaloes", + "type": "Child", + "id": "https://ror.org/02wmtxq23" + }, + { + "label": "Central Institute for Research on Cattle", + "type": "Child", + "id": "https://ror.org/01j495q26" + }, + { + "label": "Central Institute for Research on Cotton Technology", + "type": "Child", + "id": "https://ror.org/00jgd4s13" + }, + { + "label": "Central Institute for Research on Goats", + "type": "Child", + "id": "https://ror.org/01n1cp186" + }, + { + "label": "Central Institute of Agricultural Engineering", + "type": "Child", + "id": "https://ror.org/026j5b854" + }, + { + "label": "Central Institute of Brackishwater Aquaculture", + "type": "Child", + "id": "https://ror.org/05e7sd388" + }, + { + "label": "Central Institute of Fisheries Education", + "type": "Child", + "id": "https://ror.org/03qfmrs34" + }, + { + "label": "Central Institute of Fisheries Technology", + "type": "Child", + "id": "https://ror.org/04cbweh98" + }, + { + "label": "Central Institute of Freshwater Aquaculture", + "type": "Child", + "id": "https://ror.org/041137e25" + }, + { + "label": "Central Institute of Post-Harvest Engineering and Technology", + "type": "Child", + "id": "https://ror.org/013qy4n59" + }, + { + "label": "Central Institute of Temperate Horticulture", + "type": "Child", + "id": "https://ror.org/032sxkb16" + }, + { + "label": "Central Island Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/03rsgdh53" + }, + { + "label": "Central Marine Fisheries Research Institute", + "type": "Child", + "id": "https://ror.org/02jw8vr54" + }, + { + "label": "Central Plantation Crops Research Institute", + "type": "Child", + "id": "https://ror.org/052afrt88" + }, + { + "label": "Central Potato Research Institute", + "type": "Child", + "id": "https://ror.org/019nmf858" + }, + { + "label": "Central Research Institute for Dryland Agriculture", + "type": "Child", + "id": "https://ror.org/05e1f3f77" + }, + { + "label": "Central Research Institute for Jute and Allied Fibres", + "type": "Child", + "id": "https://ror.org/01tk0cw08" + }, + { + "label": "Central Rice Research Institute", + "type": "Child", + "id": "https://ror.org/029zb5621" + }, + { + "label": "Central Sheep and Wool Research Institute", + "type": "Child", + "id": "https://ror.org/024h4jv51" + }, + { + "label": "Central Soil Salinity Research Institute", + "type": "Child", + "id": "https://ror.org/0366v8040" + }, + { + "label": "Central Tobacco Research Institute", + "type": "Child", + "id": "https://ror.org/04bzq6109" + }, + { + "label": "Central Tuber Crops Research Institute", + "type": "Child", + "id": "https://ror.org/04ry4r880" + }, + { + "label": "Directorate of Cashew Research", + "type": "Child", + "id": "https://ror.org/018jrds86" + }, + { + "label": "Directorate of Coldwater Fisheries Research", + "type": "Child", + "id": "https://ror.org/03j87dy80" + }, + { + "label": "Directorate of Groundnut Research", + "type": "Child", + "id": "https://ror.org/038rpb237" + }, + { + "label": "Directorate of Medicinal and Aromatic Plants Research", + "type": "Child", + "id": "https://ror.org/04n3c2195" + }, + { + "label": "Directorate of Onion and Garlic Research", + "type": "Child", + "id": "https://ror.org/02hbdvq93" + }, + { + "label": "Directorate of Poultry Research", + "type": "Child", + "id": "https://ror.org/01c0mrz71" + }, + { + "label": "Directorate of Rapeseed-Mustard Research", + "type": "Child", + "id": "https://ror.org/01mz7kc73" + }, + { + "label": "Directorate of Weed Research", + "type": "Child", + "id": "https://ror.org/02hzb7188" + }, + { + "label": "ICAR Research Complex for NEH Region", + "type": "Child", + "id": "https://ror.org/023azs158" + }, + { + "label": "ICAR-Indian Institute of Agricultural Biotechnology", + "type": "Child", + "id": "https://ror.org/04kswek43" + }, + { + "label": "ICAR-Indian Institute of Maize Research", + "type": "Child", + "id": "https://ror.org/04v3ce875" + }, + { + "label": "Indian Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/01bzgdw81" + }, + { + "label": "Indian Agricultural Statistics Research Institute", + "type": "Child", + "id": "https://ror.org/03kkevc75" + }, + { + "label": "Indian Grassland and Fodder Research Institute", + "type": "Child", + "id": "https://ror.org/03x3mpp61" + }, + { + "label": "Indian Institute of Horticultural Research", + "type": "Child", + "id": "https://ror.org/00s2dqx11" + }, + { + "label": "Indian Institute of Millets Research", + "type": "Child", + "id": "https://ror.org/02pvp9c06" + }, + { + "label": "Indian Institute of Natural Resins and Gums", + "type": "Child", + "id": "https://ror.org/047q4fb87" + }, + { + "label": "Indian Institute of Oil Palm Research", + "type": "Child", + "id": "https://ror.org/02t72hc65" + }, + { + "label": "Indian Institute of Oilseeds Research", + "type": "Child", + "id": "https://ror.org/00wrwqa33" + }, + { + "label": "Indian Institute of Rice Research", + "type": "Child", + "id": "https://ror.org/021j5pp16" + }, + { + "label": "Indian Institute of Soil Science", + "type": "Child", + "id": "https://ror.org/05j873a45" + }, + { + "label": "Indian Institute of Soil and Water Conservation", + "type": "Child", + "id": "https://ror.org/05jdfze05" + }, + { + "label": "Indian Institute of Soybean Research", + "type": "Child", + "id": "https://ror.org/05vm6r550" + }, + { + "label": "Indian Institute of Spices Research", + "type": "Child", + "id": "https://ror.org/0599dmq43" + }, + { + "label": "Indian Institute of Sugarcane Research", + "type": "Child", + "id": "https://ror.org/030nxya44" + }, + { + "label": "Indian Institute of Vegetable Research", + "type": "Child", + "id": "https://ror.org/032kjn442" + }, + { + "label": "Indian Institute of Wheat and Barley Research", + "type": "Child", + "id": "https://ror.org/0516brw47" + }, + { + "label": "Indian Veterinary Research Institute", + "type": "Child", + "id": "https://ror.org/02jcfzc36" + }, + { + "label": "Krishi Vigyan Kendra, Hingoli", + "type": "Child", + "id": "https://ror.org/00y3zx547" + }, + { + "label": "Krishi Vigyan Kendra, Karda", + "type": "Child", + "id": "https://ror.org/05n682z45" + }, + { + "label": "Krishi Vigyan Kendra, Latur", + "type": "Child", + "id": "https://ror.org/01hmsgz49" + }, + { + "label": "National Academy of Agricultural Research Management", + "type": "Child", + "id": "https://ror.org/02rx19412" + }, + { + "label": "National Bureau of Agricultural Insect Resources", + "type": "Child", + "id": "https://ror.org/03pf1rt23" + }, + { + "label": "National Bureau of Agriculturally Important Microorganisms", + "type": "Child", + "id": "https://ror.org/02pnvb171" + }, + { + "label": "National Bureau of Animal Genetic Resources", + "type": "Child", + "id": "https://ror.org/03d3nyr92" + }, + { + "label": "National Bureau of Fish Genetic Resources", + "type": "Child", + "id": "https://ror.org/009h1nj77" + }, + { + "label": "National Bureau of Plant Genetic Resources", + "type": "Child", + "id": "https://ror.org/00scbd467" + }, + { + "label": "National Bureau of Soil Survey and Land Use Planning", + "type": "Child", + "id": "https://ror.org/05vm7ws26" + }, + { + "label": "National Dairy Research Institute", + "type": "Child", + "id": "https://ror.org/03ap5bg83" + }, + { + "label": "National Institute Of Veterinary Epidemiology And Disease Informatics", + "type": "Child", + "id": "https://ror.org/04s9fyw02" + }, + { + "label": "National Institute of Abiotic Stress Management", + "type": "Child", + "id": "https://ror.org/05h9t7c44" + }, + { + "label": "National Institute of Animal Nutrition and Physiology", + "type": "Child", + "id": "https://ror.org/03ep3hs23" + }, + { + "label": "National Institute of High Security Animal Diseases", + "type": "Child", + "id": "https://ror.org/0354ckp94" + }, + { + "label": "National Institute of Research on Jute and Allied Fibre Technology", + "type": "Child", + "id": "https://ror.org/02netwe45" + }, + { + "label": "National Research Centre for Grapes", + "type": "Child", + "id": "https://ror.org/003709a13" + }, + { + "label": "National Research Centre for Integrated Pest Management", + "type": "Child", + "id": "https://ror.org/01d9dyv42" + }, + { + "label": "National Research Centre on Camel", + "type": "Child", + "id": "https://ror.org/02xh2ys40" + }, + { + "label": "National Research Centre on Equines", + "type": "Child", + "id": "https://ror.org/04jzz0b06" + }, + { + "label": "National Research Centre on Litchi", + "type": "Child", + "id": "https://ror.org/007w39b04" + }, + { + "label": "National Research Centre on Meat", + "type": "Child", + "id": "https://ror.org/03bjcbf76" + }, + { + "label": "National Research Centre on Mithun", + "type": "Child", + "id": "https://ror.org/043w1y866" + }, + { + "label": "National Research Centre on Plant Biotechnology", + "type": "Child", + "id": "https://ror.org/00cq3cz72" + }, + { + "label": "National Research Centre on Seed Spices", + "type": "Child", + "id": "https://ror.org/02fcamb19" + }, + { + "label": "National Research Centre on Yak", + "type": "Child", + "id": "https://ror.org/0052nmr57" + }, + { + "label": "Project Directorate on Foot and Mouth Disease", + "type": "Child", + "id": "https://ror.org/026695c98" + }, + { + "label": "Sugarcane Breeding Institute", + "type": "Child", + "id": "https://ror.org/04q18mv54" + }, + { + "label": "University of Agricultural Sciences, Dharwad", + "type": "Child", + "id": "https://ror.org/02qn0hf26" + }, + { + "label": "Vivekananda Parvatiya Krishi Anusandhan Sansthan", + "type": "Child", + "id": "https://ror.org/043m3hn34" + } + ], + "addresses": [ + { + "lat": 28.63576, + "lng": 77.22445, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 1261481, + "city": "New Delhi", + "geonames_admin1": { + "name": "Delhi", + "id": 1273293, + "ascii_name": "Delhi", + "code": "IN.07" + }, + "geonames_admin2": { + "name": "New Delhi", + "id": 8347332, + "ascii_name": "New Delhi", + "code": "IN.07.094" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "http://www.icar.org.in/" + ], + "aliases": [ + "Imperial Council of Agricultural Research" + ], + "acronyms": [ + "ICAR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Indian_Council_of_Agricultural_Research", + "labels": [ + { + "label": "भारतीय कृषि अनुसंधान परिषद", + "iso639": "hi" + }, + { + "label": "இந்திய வேளாண் ஆய்வுக் கழகம்", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0643 7375" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100001503" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2899838" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3522398" + ] + }, + "GRID": { + "preferred": "grid.418105.9", + "all": "grid.418105.9" + } + } +} \ No newline at end of file From 4934f15d46b709361728dd6c32d6c066246dc157 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 27 Sep 2022 12:10:52 -0500 Subject: [PATCH 10/49] copy json files from all paths --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 5bef6418d..2c61e165c 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -38,7 +38,7 @@ jobs: id: validatefiles run: | mkdir files - cp ./${{ env.WORKING_DIR }}/*.json files/ + cp ./${{ env.WORKING_DIR }}/*/*.json files/ cd validation-suite python -m pip install --upgrade pip pip install -r requirements.txt From 752bb501b30f565deed6ebfebca6cb360c72329f Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 27 Sep 2022 12:15:43 -0500 Subject: [PATCH 11/49] move files to subdirs --- test-org-status/{ => new}/02yrzg710.json | 0 test-org-status/{ => new}/05tjkdd50.json | 0 test-org-status/{ => updates}/00rq8ty33.json | 0 test-org-status/{ => updates}/03ybaf311.json | 0 test-org-status/{ => updates}/04wxnsj81.json | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename test-org-status/{ => new}/02yrzg710.json (100%) rename test-org-status/{ => new}/05tjkdd50.json (100%) rename test-org-status/{ => updates}/00rq8ty33.json (100%) rename test-org-status/{ => updates}/03ybaf311.json (100%) rename test-org-status/{ => updates}/04wxnsj81.json (100%) diff --git a/test-org-status/02yrzg710.json b/test-org-status/new/02yrzg710.json similarity index 100% rename from test-org-status/02yrzg710.json rename to test-org-status/new/02yrzg710.json diff --git a/test-org-status/05tjkdd50.json b/test-org-status/new/05tjkdd50.json similarity index 100% rename from test-org-status/05tjkdd50.json rename to test-org-status/new/05tjkdd50.json diff --git a/test-org-status/00rq8ty33.json b/test-org-status/updates/00rq8ty33.json similarity index 100% rename from test-org-status/00rq8ty33.json rename to test-org-status/updates/00rq8ty33.json diff --git a/test-org-status/03ybaf311.json b/test-org-status/updates/03ybaf311.json similarity index 100% rename from test-org-status/03ybaf311.json rename to test-org-status/updates/03ybaf311.json diff --git a/test-org-status/04wxnsj81.json b/test-org-status/updates/04wxnsj81.json similarity index 100% rename from test-org-status/04wxnsj81.json rename to test-org-status/updates/04wxnsj81.json From 350a5b3927a18df1d13bc8f785d2de3a6403e2f7 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 29 Sep 2022 13:12:58 -0400 Subject: [PATCH 12/49] use generate relationships script from working branch --- .github/workflows/generate_relationships.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate_relationships.yml b/.github/workflows/generate_relationships.yml index bdea98a26..05aa3661c 100644 --- a/.github/workflows/generate_relationships.yml +++ b/.github/workflows/generate_relationships.yml @@ -31,7 +31,7 @@ jobs: python -m pip install --upgrade pip pip install requests==2.23.0 pip install git+https://github.com/ror-community/update_address.git - curl https://raw.githubusercontent.com/ror-community/curation_ops/main/generate_relationships/generate_relationships.py -o generate_relationships.py + curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/generate_relationships/generate_relationships.py -o generate_relationships.py python generate_relationships.py relationships.csv - name: commit error file if: ${{ steps.genrelshp.outcome != 'success'}} From 6a34b54a241093d21e3bbd417131bc598078d413 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 29 Sep 2022 13:18:03 -0400 Subject: [PATCH 13/49] reset test files --- .../{updates => new}/03ybaf311.json | 8 +- test-org-status/updates/04fw54a43.json | 547 ------------------ test-org-status/updates/04wxnsj81.json | 8 +- 3 files changed, 2 insertions(+), 561 deletions(-) rename test-org-status/{updates => new}/03ybaf311.json (91%) delete mode 100644 test-org-status/updates/04fw54a43.json diff --git a/test-org-status/updates/03ybaf311.json b/test-org-status/new/03ybaf311.json similarity index 91% rename from test-org-status/updates/03ybaf311.json rename to test-org-status/new/03ybaf311.json index 8622b0292..1c23561cd 100644 --- a/test-org-status/updates/03ybaf311.json +++ b/test-org-status/new/03ybaf311.json @@ -65,13 +65,7 @@ ], "external_ids": {}, "established": null, - "relationships": [ - { - "label": "University of Michigan–Ann Arbor", - "type": "Successor", - "id": "https://ror.org/00jmfr291" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/03ybaf311", "labels": [], diff --git a/test-org-status/updates/04fw54a43.json b/test-org-status/updates/04fw54a43.json deleted file mode 100644 index e4196c6c0..000000000 --- a/test-org-status/updates/04fw54a43.json +++ /dev/null @@ -1,547 +0,0 @@ -{ - "id": "https://ror.org/04fw54a43", - "name": "Indian Council of Agricultural Research", - "email_address": "", - "ip_addresses": [], - "established": 1929, - "types": [ - "Government" - ], - "relationships": [ - { - "label": "Central Arid Zone Research Institute", - "type": "Child", - "id": "https://ror.org/04298em06" - }, - { - "label": "Central Avian Research Institute", - "type": "Child", - "id": "https://ror.org/00gsmyw97" - }, - { - "label": "Central Citrus Research Institute", - "type": "Child", - "id": "https://ror.org/03fv7j188" - }, - { - "label": "Central Coastal Agricultural Research Institute", - "type": "Child", - "id": "https://ror.org/00n1gdp39" - }, - { - "label": "Central Inland Fisheries Research Institute", - "type": "Child", - "id": "https://ror.org/04gtdp803" - }, - { - "label": "Central Institute For Subtropical Horticulture", - "type": "Child", - "id": "https://ror.org/0128gh156" - }, - { - "label": "Central Institute for Cotton Research", - "type": "Child", - "id": "https://ror.org/03cbgzw80" - }, - { - "label": "Central Institute for Research on Buffaloes", - "type": "Child", - "id": "https://ror.org/02wmtxq23" - }, - { - "label": "Central Institute for Research on Cattle", - "type": "Child", - "id": "https://ror.org/01j495q26" - }, - { - "label": "Central Institute for Research on Cotton Technology", - "type": "Child", - "id": "https://ror.org/00jgd4s13" - }, - { - "label": "Central Institute for Research on Goats", - "type": "Child", - "id": "https://ror.org/01n1cp186" - }, - { - "label": "Central Institute of Agricultural Engineering", - "type": "Child", - "id": "https://ror.org/026j5b854" - }, - { - "label": "Central Institute of Brackishwater Aquaculture", - "type": "Child", - "id": "https://ror.org/05e7sd388" - }, - { - "label": "Central Institute of Fisheries Education", - "type": "Child", - "id": "https://ror.org/03qfmrs34" - }, - { - "label": "Central Institute of Fisheries Technology", - "type": "Child", - "id": "https://ror.org/04cbweh98" - }, - { - "label": "Central Institute of Freshwater Aquaculture", - "type": "Child", - "id": "https://ror.org/041137e25" - }, - { - "label": "Central Institute of Post-Harvest Engineering and Technology", - "type": "Child", - "id": "https://ror.org/013qy4n59" - }, - { - "label": "Central Institute of Temperate Horticulture", - "type": "Child", - "id": "https://ror.org/032sxkb16" - }, - { - "label": "Central Island Agricultural Research Institute", - "type": "Child", - "id": "https://ror.org/03rsgdh53" - }, - { - "label": "Central Marine Fisheries Research Institute", - "type": "Child", - "id": "https://ror.org/02jw8vr54" - }, - { - "label": "Central Plantation Crops Research Institute", - "type": "Child", - "id": "https://ror.org/052afrt88" - }, - { - "label": "Central Potato Research Institute", - "type": "Child", - "id": "https://ror.org/019nmf858" - }, - { - "label": "Central Research Institute for Dryland Agriculture", - "type": "Child", - "id": "https://ror.org/05e1f3f77" - }, - { - "label": "Central Research Institute for Jute and Allied Fibres", - "type": "Child", - "id": "https://ror.org/01tk0cw08" - }, - { - "label": "Central Rice Research Institute", - "type": "Child", - "id": "https://ror.org/029zb5621" - }, - { - "label": "Central Sheep and Wool Research Institute", - "type": "Child", - "id": "https://ror.org/024h4jv51" - }, - { - "label": "Central Soil Salinity Research Institute", - "type": "Child", - "id": "https://ror.org/0366v8040" - }, - { - "label": "Central Tobacco Research Institute", - "type": "Child", - "id": "https://ror.org/04bzq6109" - }, - { - "label": "Central Tuber Crops Research Institute", - "type": "Child", - "id": "https://ror.org/04ry4r880" - }, - { - "label": "Directorate of Cashew Research", - "type": "Child", - "id": "https://ror.org/018jrds86" - }, - { - "label": "Directorate of Coldwater Fisheries Research", - "type": "Child", - "id": "https://ror.org/03j87dy80" - }, - { - "label": "Directorate of Groundnut Research", - "type": "Child", - "id": "https://ror.org/038rpb237" - }, - { - "label": "Directorate of Medicinal and Aromatic Plants Research", - "type": "Child", - "id": "https://ror.org/04n3c2195" - }, - { - "label": "Directorate of Onion and Garlic Research", - "type": "Child", - "id": "https://ror.org/02hbdvq93" - }, - { - "label": "Directorate of Poultry Research", - "type": "Child", - "id": "https://ror.org/01c0mrz71" - }, - { - "label": "Directorate of Rapeseed-Mustard Research", - "type": "Child", - "id": "https://ror.org/01mz7kc73" - }, - { - "label": "Directorate of Weed Research", - "type": "Child", - "id": "https://ror.org/02hzb7188" - }, - { - "label": "ICAR Research Complex for NEH Region", - "type": "Child", - "id": "https://ror.org/023azs158" - }, - { - "label": "ICAR-Indian Institute of Agricultural Biotechnology", - "type": "Child", - "id": "https://ror.org/04kswek43" - }, - { - "label": "ICAR-Indian Institute of Maize Research", - "type": "Child", - "id": "https://ror.org/04v3ce875" - }, - { - "label": "Indian Agricultural Research Institute", - "type": "Child", - "id": "https://ror.org/01bzgdw81" - }, - { - "label": "Indian Agricultural Statistics Research Institute", - "type": "Child", - "id": "https://ror.org/03kkevc75" - }, - { - "label": "Indian Grassland and Fodder Research Institute", - "type": "Child", - "id": "https://ror.org/03x3mpp61" - }, - { - "label": "Indian Institute of Horticultural Research", - "type": "Child", - "id": "https://ror.org/00s2dqx11" - }, - { - "label": "Indian Institute of Millets Research", - "type": "Child", - "id": "https://ror.org/02pvp9c06" - }, - { - "label": "Indian Institute of Natural Resins and Gums", - "type": "Child", - "id": "https://ror.org/047q4fb87" - }, - { - "label": "Indian Institute of Oil Palm Research", - "type": "Child", - "id": "https://ror.org/02t72hc65" - }, - { - "label": "Indian Institute of Oilseeds Research", - "type": "Child", - "id": "https://ror.org/00wrwqa33" - }, - { - "label": "Indian Institute of Rice Research", - "type": "Child", - "id": "https://ror.org/021j5pp16" - }, - { - "label": "Indian Institute of Soil Science", - "type": "Child", - "id": "https://ror.org/05j873a45" - }, - { - "label": "Indian Institute of Soil and Water Conservation", - "type": "Child", - "id": "https://ror.org/05jdfze05" - }, - { - "label": "Indian Institute of Soybean Research", - "type": "Child", - "id": "https://ror.org/05vm6r550" - }, - { - "label": "Indian Institute of Spices Research", - "type": "Child", - "id": "https://ror.org/0599dmq43" - }, - { - "label": "Indian Institute of Sugarcane Research", - "type": "Child", - "id": "https://ror.org/030nxya44" - }, - { - "label": "Indian Institute of Vegetable Research", - "type": "Child", - "id": "https://ror.org/032kjn442" - }, - { - "label": "Indian Institute of Wheat and Barley Research", - "type": "Child", - "id": "https://ror.org/0516brw47" - }, - { - "label": "Indian Veterinary Research Institute", - "type": "Child", - "id": "https://ror.org/02jcfzc36" - }, - { - "label": "Krishi Vigyan Kendra, Hingoli", - "type": "Child", - "id": "https://ror.org/00y3zx547" - }, - { - "label": "Krishi Vigyan Kendra, Karda", - "type": "Child", - "id": "https://ror.org/05n682z45" - }, - { - "label": "Krishi Vigyan Kendra, Latur", - "type": "Child", - "id": "https://ror.org/01hmsgz49" - }, - { - "label": "National Academy of Agricultural Research Management", - "type": "Child", - "id": "https://ror.org/02rx19412" - }, - { - "label": "National Bureau of Agricultural Insect Resources", - "type": "Child", - "id": "https://ror.org/03pf1rt23" - }, - { - "label": "National Bureau of Agriculturally Important Microorganisms", - "type": "Child", - "id": "https://ror.org/02pnvb171" - }, - { - "label": "National Bureau of Animal Genetic Resources", - "type": "Child", - "id": "https://ror.org/03d3nyr92" - }, - { - "label": "National Bureau of Fish Genetic Resources", - "type": "Child", - "id": "https://ror.org/009h1nj77" - }, - { - "label": "National Bureau of Plant Genetic Resources", - "type": "Child", - "id": "https://ror.org/00scbd467" - }, - { - "label": "National Bureau of Soil Survey and Land Use Planning", - "type": "Child", - "id": "https://ror.org/05vm7ws26" - }, - { - "label": "National Dairy Research Institute", - "type": "Child", - "id": "https://ror.org/03ap5bg83" - }, - { - "label": "National Institute Of Veterinary Epidemiology And Disease Informatics", - "type": "Child", - "id": "https://ror.org/04s9fyw02" - }, - { - "label": "National Institute of Abiotic Stress Management", - "type": "Child", - "id": "https://ror.org/05h9t7c44" - }, - { - "label": "National Institute of Animal Nutrition and Physiology", - "type": "Child", - "id": "https://ror.org/03ep3hs23" - }, - { - "label": "National Institute of High Security Animal Diseases", - "type": "Child", - "id": "https://ror.org/0354ckp94" - }, - { - "label": "National Institute of Research on Jute and Allied Fibre Technology", - "type": "Child", - "id": "https://ror.org/02netwe45" - }, - { - "label": "National Research Centre for Grapes", - "type": "Child", - "id": "https://ror.org/003709a13" - }, - { - "label": "National Research Centre for Integrated Pest Management", - "type": "Child", - "id": "https://ror.org/01d9dyv42" - }, - { - "label": "National Research Centre on Camel", - "type": "Child", - "id": "https://ror.org/02xh2ys40" - }, - { - "label": "National Research Centre on Equines", - "type": "Child", - "id": "https://ror.org/04jzz0b06" - }, - { - "label": "National Research Centre on Litchi", - "type": "Child", - "id": "https://ror.org/007w39b04" - }, - { - "label": "National Research Centre on Meat", - "type": "Child", - "id": "https://ror.org/03bjcbf76" - }, - { - "label": "National Research Centre on Mithun", - "type": "Child", - "id": "https://ror.org/043w1y866" - }, - { - "label": "National Research Centre on Plant Biotechnology", - "type": "Child", - "id": "https://ror.org/00cq3cz72" - }, - { - "label": "National Research Centre on Seed Spices", - "type": "Child", - "id": "https://ror.org/02fcamb19" - }, - { - "label": "National Research Centre on Yak", - "type": "Child", - "id": "https://ror.org/0052nmr57" - }, - { - "label": "Project Directorate on Foot and Mouth Disease", - "type": "Child", - "id": "https://ror.org/026695c98" - }, - { - "label": "Sugarcane Breeding Institute", - "type": "Child", - "id": "https://ror.org/04q18mv54" - }, - { - "label": "University of Agricultural Sciences, Dharwad", - "type": "Child", - "id": "https://ror.org/02qn0hf26" - }, - { - "label": "Vivekananda Parvatiya Krishi Anusandhan Sansthan", - "type": "Child", - "id": "https://ror.org/043m3hn34" - } - ], - "addresses": [ - { - "lat": 28.63576, - "lng": 77.22445, - "state": null, - "state_code": null, - "city": "New Delhi", - "geonames_city": { - "id": 1261481, - "city": "New Delhi", - "geonames_admin1": { - "name": "Delhi", - "id": 1273293, - "ascii_name": "Delhi", - "code": "IN.07" - }, - "geonames_admin2": { - "name": "New Delhi", - "id": 8347332, - "ascii_name": "New Delhi", - "code": "IN.07.094" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 1269750 - } - ], - "links": [ - "http://www.icar.org.in/" - ], - "aliases": [ - "Imperial Council of Agricultural Research" - ], - "acronyms": [ - "ICAR" - ], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/Indian_Council_of_Agricultural_Research", - "labels": [ - { - "label": "भारतीय कृषि अनुसंधान परिषद", - "iso639": "hi" - }, - { - "label": "இந்திய வேளாண் ஆய்வுக் கழகம்", - "iso639": "ta" - } - ], - "country": { - "country_name": "India", - "country_code": "IN" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 0643 7375" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100001503" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "2899838" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q3522398" - ] - }, - "GRID": { - "preferred": "grid.418105.9", - "all": "grid.418105.9" - } - } -} \ No newline at end of file diff --git a/test-org-status/updates/04wxnsj81.json b/test-org-status/updates/04wxnsj81.json index 795be4605..33d8e0ecd 100644 --- a/test-org-status/updates/04wxnsj81.json +++ b/test-org-status/updates/04wxnsj81.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "Test new record active", - "type": "Successor", - "id": "https://ror.org/02yrzg710" - } - ], + "relationships": [], "addresses": [ { "lat": 52.37052, From 930d573cd02435b84b4acc4af0d190a48a6e6176 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 29 Sep 2022 13:28:42 -0400 Subject: [PATCH 14/49] remove relationship to inactive record --- test-org-status/relationships.csv | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test-org-status/relationships.csv b/test-org-status/relationships.csv index ad4cebccf..043365228 100644 --- a/test-org-status/relationships.csv +++ b/test-org-status/relationships.csv @@ -1,4 +1,3 @@ Name of org in Record ID,Record ID,Related ID,Name of org in Related ID,Relationship of Related ID to Record ID,Current location of Related ID Test new record inactive with successor,https://ror.org/03ybaf311,https://ror.org/00jmfr291,University of Michigan–Ann Arbor,Successor,Production -DataCite,https://ror.org/04wxnsj81,https://ror.org/02yrzg710,Test record active,Successor,Release -Test record active,https://ror.org/02yrzg710,https://ror.org/04wxnsj81,DataCite,Predecessor,Release \ No newline at end of file +DataCite,https://ror.org/04wxnsj81,https://ror.org/02yrzg710,Test record active,Successor,Release \ No newline at end of file From 073e675fc1ea8a65627b7ef44df8c5906473a10e Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 29 Sep 2022 17:29:39 +0000 Subject: [PATCH 15/49] Apply relationship changes to files --- test-org-status/new/03ybaf311.json | 8 +++++++- test-org-status/updates/04wxnsj81.json | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/test-org-status/new/03ybaf311.json b/test-org-status/new/03ybaf311.json index 1c23561cd..8622b0292 100644 --- a/test-org-status/new/03ybaf311.json +++ b/test-org-status/new/03ybaf311.json @@ -65,7 +65,13 @@ ], "external_ids": {}, "established": null, - "relationships": [], + "relationships": [ + { + "label": "University of Michigan–Ann Arbor", + "type": "Successor", + "id": "https://ror.org/00jmfr291" + } + ], "email_address": null, "id": "https://ror.org/03ybaf311", "labels": [], diff --git a/test-org-status/updates/04wxnsj81.json b/test-org-status/updates/04wxnsj81.json index 33d8e0ecd..795be4605 100644 --- a/test-org-status/updates/04wxnsj81.json +++ b/test-org-status/updates/04wxnsj81.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "Test new record active", + "type": "Successor", + "id": "https://ror.org/02yrzg710" + } + ], "addresses": [ { "lat": 52.37052, From b0233f03e8627fe6d46c1ca9892a5e571112eccd Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 29 Sep 2022 17:32:46 +0000 Subject: [PATCH 16/49] Apply relationship changes to files --- test-org-status/updates/04fw54a43.json | 547 +++++++++++++++++++++++++ 1 file changed, 547 insertions(+) create mode 100644 test-org-status/updates/04fw54a43.json diff --git a/test-org-status/updates/04fw54a43.json b/test-org-status/updates/04fw54a43.json new file mode 100644 index 000000000..e4196c6c0 --- /dev/null +++ b/test-org-status/updates/04fw54a43.json @@ -0,0 +1,547 @@ +{ + "id": "https://ror.org/04fw54a43", + "name": "Indian Council of Agricultural Research", + "email_address": "", + "ip_addresses": [], + "established": 1929, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Central Arid Zone Research Institute", + "type": "Child", + "id": "https://ror.org/04298em06" + }, + { + "label": "Central Avian Research Institute", + "type": "Child", + "id": "https://ror.org/00gsmyw97" + }, + { + "label": "Central Citrus Research Institute", + "type": "Child", + "id": "https://ror.org/03fv7j188" + }, + { + "label": "Central Coastal Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/00n1gdp39" + }, + { + "label": "Central Inland Fisheries Research Institute", + "type": "Child", + "id": "https://ror.org/04gtdp803" + }, + { + "label": "Central Institute For Subtropical Horticulture", + "type": "Child", + "id": "https://ror.org/0128gh156" + }, + { + "label": "Central Institute for Cotton Research", + "type": "Child", + "id": "https://ror.org/03cbgzw80" + }, + { + "label": "Central Institute for Research on Buffaloes", + "type": "Child", + "id": "https://ror.org/02wmtxq23" + }, + { + "label": "Central Institute for Research on Cattle", + "type": "Child", + "id": "https://ror.org/01j495q26" + }, + { + "label": "Central Institute for Research on Cotton Technology", + "type": "Child", + "id": "https://ror.org/00jgd4s13" + }, + { + "label": "Central Institute for Research on Goats", + "type": "Child", + "id": "https://ror.org/01n1cp186" + }, + { + "label": "Central Institute of Agricultural Engineering", + "type": "Child", + "id": "https://ror.org/026j5b854" + }, + { + "label": "Central Institute of Brackishwater Aquaculture", + "type": "Child", + "id": "https://ror.org/05e7sd388" + }, + { + "label": "Central Institute of Fisheries Education", + "type": "Child", + "id": "https://ror.org/03qfmrs34" + }, + { + "label": "Central Institute of Fisheries Technology", + "type": "Child", + "id": "https://ror.org/04cbweh98" + }, + { + "label": "Central Institute of Freshwater Aquaculture", + "type": "Child", + "id": "https://ror.org/041137e25" + }, + { + "label": "Central Institute of Post-Harvest Engineering and Technology", + "type": "Child", + "id": "https://ror.org/013qy4n59" + }, + { + "label": "Central Institute of Temperate Horticulture", + "type": "Child", + "id": "https://ror.org/032sxkb16" + }, + { + "label": "Central Island Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/03rsgdh53" + }, + { + "label": "Central Marine Fisheries Research Institute", + "type": "Child", + "id": "https://ror.org/02jw8vr54" + }, + { + "label": "Central Plantation Crops Research Institute", + "type": "Child", + "id": "https://ror.org/052afrt88" + }, + { + "label": "Central Potato Research Institute", + "type": "Child", + "id": "https://ror.org/019nmf858" + }, + { + "label": "Central Research Institute for Dryland Agriculture", + "type": "Child", + "id": "https://ror.org/05e1f3f77" + }, + { + "label": "Central Research Institute for Jute and Allied Fibres", + "type": "Child", + "id": "https://ror.org/01tk0cw08" + }, + { + "label": "Central Rice Research Institute", + "type": "Child", + "id": "https://ror.org/029zb5621" + }, + { + "label": "Central Sheep and Wool Research Institute", + "type": "Child", + "id": "https://ror.org/024h4jv51" + }, + { + "label": "Central Soil Salinity Research Institute", + "type": "Child", + "id": "https://ror.org/0366v8040" + }, + { + "label": "Central Tobacco Research Institute", + "type": "Child", + "id": "https://ror.org/04bzq6109" + }, + { + "label": "Central Tuber Crops Research Institute", + "type": "Child", + "id": "https://ror.org/04ry4r880" + }, + { + "label": "Directorate of Cashew Research", + "type": "Child", + "id": "https://ror.org/018jrds86" + }, + { + "label": "Directorate of Coldwater Fisheries Research", + "type": "Child", + "id": "https://ror.org/03j87dy80" + }, + { + "label": "Directorate of Groundnut Research", + "type": "Child", + "id": "https://ror.org/038rpb237" + }, + { + "label": "Directorate of Medicinal and Aromatic Plants Research", + "type": "Child", + "id": "https://ror.org/04n3c2195" + }, + { + "label": "Directorate of Onion and Garlic Research", + "type": "Child", + "id": "https://ror.org/02hbdvq93" + }, + { + "label": "Directorate of Poultry Research", + "type": "Child", + "id": "https://ror.org/01c0mrz71" + }, + { + "label": "Directorate of Rapeseed-Mustard Research", + "type": "Child", + "id": "https://ror.org/01mz7kc73" + }, + { + "label": "Directorate of Weed Research", + "type": "Child", + "id": "https://ror.org/02hzb7188" + }, + { + "label": "ICAR Research Complex for NEH Region", + "type": "Child", + "id": "https://ror.org/023azs158" + }, + { + "label": "ICAR-Indian Institute of Agricultural Biotechnology", + "type": "Child", + "id": "https://ror.org/04kswek43" + }, + { + "label": "ICAR-Indian Institute of Maize Research", + "type": "Child", + "id": "https://ror.org/04v3ce875" + }, + { + "label": "Indian Agricultural Research Institute", + "type": "Child", + "id": "https://ror.org/01bzgdw81" + }, + { + "label": "Indian Agricultural Statistics Research Institute", + "type": "Child", + "id": "https://ror.org/03kkevc75" + }, + { + "label": "Indian Grassland and Fodder Research Institute", + "type": "Child", + "id": "https://ror.org/03x3mpp61" + }, + { + "label": "Indian Institute of Horticultural Research", + "type": "Child", + "id": "https://ror.org/00s2dqx11" + }, + { + "label": "Indian Institute of Millets Research", + "type": "Child", + "id": "https://ror.org/02pvp9c06" + }, + { + "label": "Indian Institute of Natural Resins and Gums", + "type": "Child", + "id": "https://ror.org/047q4fb87" + }, + { + "label": "Indian Institute of Oil Palm Research", + "type": "Child", + "id": "https://ror.org/02t72hc65" + }, + { + "label": "Indian Institute of Oilseeds Research", + "type": "Child", + "id": "https://ror.org/00wrwqa33" + }, + { + "label": "Indian Institute of Rice Research", + "type": "Child", + "id": "https://ror.org/021j5pp16" + }, + { + "label": "Indian Institute of Soil Science", + "type": "Child", + "id": "https://ror.org/05j873a45" + }, + { + "label": "Indian Institute of Soil and Water Conservation", + "type": "Child", + "id": "https://ror.org/05jdfze05" + }, + { + "label": "Indian Institute of Soybean Research", + "type": "Child", + "id": "https://ror.org/05vm6r550" + }, + { + "label": "Indian Institute of Spices Research", + "type": "Child", + "id": "https://ror.org/0599dmq43" + }, + { + "label": "Indian Institute of Sugarcane Research", + "type": "Child", + "id": "https://ror.org/030nxya44" + }, + { + "label": "Indian Institute of Vegetable Research", + "type": "Child", + "id": "https://ror.org/032kjn442" + }, + { + "label": "Indian Institute of Wheat and Barley Research", + "type": "Child", + "id": "https://ror.org/0516brw47" + }, + { + "label": "Indian Veterinary Research Institute", + "type": "Child", + "id": "https://ror.org/02jcfzc36" + }, + { + "label": "Krishi Vigyan Kendra, Hingoli", + "type": "Child", + "id": "https://ror.org/00y3zx547" + }, + { + "label": "Krishi Vigyan Kendra, Karda", + "type": "Child", + "id": "https://ror.org/05n682z45" + }, + { + "label": "Krishi Vigyan Kendra, Latur", + "type": "Child", + "id": "https://ror.org/01hmsgz49" + }, + { + "label": "National Academy of Agricultural Research Management", + "type": "Child", + "id": "https://ror.org/02rx19412" + }, + { + "label": "National Bureau of Agricultural Insect Resources", + "type": "Child", + "id": "https://ror.org/03pf1rt23" + }, + { + "label": "National Bureau of Agriculturally Important Microorganisms", + "type": "Child", + "id": "https://ror.org/02pnvb171" + }, + { + "label": "National Bureau of Animal Genetic Resources", + "type": "Child", + "id": "https://ror.org/03d3nyr92" + }, + { + "label": "National Bureau of Fish Genetic Resources", + "type": "Child", + "id": "https://ror.org/009h1nj77" + }, + { + "label": "National Bureau of Plant Genetic Resources", + "type": "Child", + "id": "https://ror.org/00scbd467" + }, + { + "label": "National Bureau of Soil Survey and Land Use Planning", + "type": "Child", + "id": "https://ror.org/05vm7ws26" + }, + { + "label": "National Dairy Research Institute", + "type": "Child", + "id": "https://ror.org/03ap5bg83" + }, + { + "label": "National Institute Of Veterinary Epidemiology And Disease Informatics", + "type": "Child", + "id": "https://ror.org/04s9fyw02" + }, + { + "label": "National Institute of Abiotic Stress Management", + "type": "Child", + "id": "https://ror.org/05h9t7c44" + }, + { + "label": "National Institute of Animal Nutrition and Physiology", + "type": "Child", + "id": "https://ror.org/03ep3hs23" + }, + { + "label": "National Institute of High Security Animal Diseases", + "type": "Child", + "id": "https://ror.org/0354ckp94" + }, + { + "label": "National Institute of Research on Jute and Allied Fibre Technology", + "type": "Child", + "id": "https://ror.org/02netwe45" + }, + { + "label": "National Research Centre for Grapes", + "type": "Child", + "id": "https://ror.org/003709a13" + }, + { + "label": "National Research Centre for Integrated Pest Management", + "type": "Child", + "id": "https://ror.org/01d9dyv42" + }, + { + "label": "National Research Centre on Camel", + "type": "Child", + "id": "https://ror.org/02xh2ys40" + }, + { + "label": "National Research Centre on Equines", + "type": "Child", + "id": "https://ror.org/04jzz0b06" + }, + { + "label": "National Research Centre on Litchi", + "type": "Child", + "id": "https://ror.org/007w39b04" + }, + { + "label": "National Research Centre on Meat", + "type": "Child", + "id": "https://ror.org/03bjcbf76" + }, + { + "label": "National Research Centre on Mithun", + "type": "Child", + "id": "https://ror.org/043w1y866" + }, + { + "label": "National Research Centre on Plant Biotechnology", + "type": "Child", + "id": "https://ror.org/00cq3cz72" + }, + { + "label": "National Research Centre on Seed Spices", + "type": "Child", + "id": "https://ror.org/02fcamb19" + }, + { + "label": "National Research Centre on Yak", + "type": "Child", + "id": "https://ror.org/0052nmr57" + }, + { + "label": "Project Directorate on Foot and Mouth Disease", + "type": "Child", + "id": "https://ror.org/026695c98" + }, + { + "label": "Sugarcane Breeding Institute", + "type": "Child", + "id": "https://ror.org/04q18mv54" + }, + { + "label": "University of Agricultural Sciences, Dharwad", + "type": "Child", + "id": "https://ror.org/02qn0hf26" + }, + { + "label": "Vivekananda Parvatiya Krishi Anusandhan Sansthan", + "type": "Child", + "id": "https://ror.org/043m3hn34" + } + ], + "addresses": [ + { + "lat": 28.63576, + "lng": 77.22445, + "state": null, + "state_code": null, + "city": "New Delhi", + "geonames_city": { + "id": 1261481, + "city": "New Delhi", + "geonames_admin1": { + "name": "Delhi", + "id": 1273293, + "ascii_name": "Delhi", + "code": "IN.07" + }, + "geonames_admin2": { + "name": "New Delhi", + "id": 8347332, + "ascii_name": "New Delhi", + "code": "IN.07.094" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "http://www.icar.org.in/" + ], + "aliases": [ + "Imperial Council of Agricultural Research" + ], + "acronyms": [ + "ICAR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Indian_Council_of_Agricultural_Research", + "labels": [ + { + "label": "भारतीय कृषि अनुसंधान परिषद", + "iso639": "hi" + }, + { + "label": "இந்திய வேளாண் ஆய்வுக் கழகம்", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0643 7375" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100001503" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2899838" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3522398" + ] + }, + "GRID": { + "preferred": "grid.418105.9", + "all": "grid.418105.9" + } + } +} \ No newline at end of file From 611294c1431dfa2de4b7241369f3cc97dd6b05ed Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 11 Oct 2022 16:10:43 -0500 Subject: [PATCH 17/49] use update labels script from branch --- .github/workflows/update_labels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_labels.yml b/.github/workflows/update_labels.yml index 7f77cb7b5..1c97c99c9 100644 --- a/.github/workflows/update_labels.yml +++ b/.github/workflows/update_labels.yml @@ -29,9 +29,9 @@ jobs: working-directory: ${{ env.WORKING_DIR }} run: | python -m pip install --upgrade pip - curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/requirements.txt -o requirements.txt + curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/update_related_records/requirements.txt -o requirements.txt pip install -r requirements.txt - curl https://raw.githubusercontent.com/ror-community/curation_ops/main/update_related_records/update_related.py -o update_related.py + curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/update_related_records/update_related.py -o update_related.py python update_related.py - name: commit changed files if: ${{ steps.updatelabels.outcome == 'success'}} From 08ac30abba82b633c09dedffbc145597a68692b7 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 11 Oct 2022 16:14:17 -0500 Subject: [PATCH 18/49] add name update for testing --- test-org-status/updates/04fw54a43.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-org-status/updates/04fw54a43.json b/test-org-status/updates/04fw54a43.json index e4196c6c0..0a59e8d82 100644 --- a/test-org-status/updates/04fw54a43.json +++ b/test-org-status/updates/04fw54a43.json @@ -1,6 +1,6 @@ { "id": "https://ror.org/04fw54a43", - "name": "Indian Council of Agricultural Research", + "name": "Indian Council of Agricultural Research Name Updated", "email_address": "", "ip_addresses": [], "established": 1929, From 8f29e6f26f6bbcf4635888e84a2e20e9c64a7d4e Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 11:37:31 -0500 Subject: [PATCH 19/49] add files for testing --- status-test/new/04kjrxx07.json | 87 +++++++++++++++++++++++ status-test/new/051dbx029.json | 87 +++++++++++++++++++++++ status-test/relationships.csv | 18 +++++ status-test/updates/00pdx2849.json | 82 ++++++++++++++++++++++ status-test/updates/01790dx02.json | 93 ++++++++++++++++++++++++ status-test/updates/01br3aa17.json | 80 +++++++++++++++++++++ status-test/updates/01zbnvs85.json | 108 ++++++++++++++++++++++++++++ status-test/updates/02zbz4g27.json | 88 +++++++++++++++++++++++ status-test/updates/03y81da23.json | 109 +++++++++++++++++++++++++++++ status-test/updates/03ybx0x41.json | 100 ++++++++++++++++++++++++++ status-test/updates/05s7dz794.json | 90 ++++++++++++++++++++++++ 11 files changed, 942 insertions(+) create mode 100644 status-test/new/04kjrxx07.json create mode 100644 status-test/new/051dbx029.json create mode 100644 status-test/relationships.csv create mode 100644 status-test/updates/00pdx2849.json create mode 100644 status-test/updates/01790dx02.json create mode 100644 status-test/updates/01br3aa17.json create mode 100644 status-test/updates/01zbnvs85.json create mode 100644 status-test/updates/02zbz4g27.json create mode 100644 status-test/updates/03y81da23.json create mode 100644 status-test/updates/03ybx0x41.json create mode 100644 status-test/updates/05s7dz794.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json new file mode 100644 index 000000000..b3efb5ff6 --- /dev/null +++ b/status-test/new/04kjrxx07.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [ + "UC Kearney Agricultural Research and Extension Center", + "University of California Kearney Agricultural Research and Extension Center" + ], + "acronyms": [ + "KARE" + ], + "links": [ + "https://kare.ucanr.edu" + ], + "wikipedia_url": "https://en.wikipedia.org/wiki/Kearney_Research_and_Extension_Center", + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0618 5472", + "all": [ + "0000 0004 0618 5472" + ] + }, + "Wikidata": { + "preferred": "Q102047436", + "all": [ + "Q102047436" + ] + } + }, + "established": 1965, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04kjrxx07", + "labels": [], + "status": "active", + "name": "Kearney Agricultural Research and Extension Center", + "types": [ + "Education" + ], + "addresses": [ + { + "lat": 36.61162, + "lng": -119.52707, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Parlier", + "geonames_city": { + "id": 5381325, + "city": "Parlier", + "geonames_admin1": { + "name": "California", + "ascii_name": "California", + "id": 5332921, + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Fresno", + "id": 5350964, + "ascii_name": "Fresno", + "code": "US.CA.019" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + } +} \ No newline at end of file diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json new file mode 100644 index 000000000..4006fff10 --- /dev/null +++ b/status-test/new/051dbx029.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.qst.go.jp/site/kansai" + ], + "wikipedia_url": null, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7436 1394", + "all": [ + "0000 0004 7436 1394" + ] + }, + "Wikidata": { + "preferred": "Q39022389", + "all": [ + "Q39022389" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/051dbx029", + "labels": [ + { + "label": "関西光科学研究所", + "iso639": "ja" + } + ], + "status": "active", + "name": "Kansai Photon Science Institute", + "types": [ + "Facility" + ], + "addresses": [ + { + "lat": 34.73781, + "lng": 135.82128, + "state": null, + "state_code": null, + "country_geonames_id": 1861060, + "city": "Kizugawa-shi", + "geonames_city": { + "id": 1859202, + "city": "Kizugawa-shi", + "geonames_admin1": { + "name": "Kyoto", + "ascii_name": "Kyoto", + "id": 1857907, + "code": "JP.22" + }, + "geonames_admin2": { + "name": "Kizugawa-shi", + "id": 1859202, + "ascii_name": "Kizugawa-shi", + "code": "JP.22.1859202" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + } +} \ No newline at end of file diff --git a/status-test/relationships.csv b/status-test/relationships.csv new file mode 100644 index 000000000..40db37651 --- /dev/null +++ b/status-test/relationships.csv @@ -0,0 +1,18 @@ +Issue # from Github,Issue URL,Issue title from Github,Name of org in Record ID,Record ID,Related ID,Name of org in Related ID,Relationship of Related ID to Record ID,Current location of Related ID +1344,https://github.com/ror-community/ror-updates/issues/1344,Modify the information in an existing ROR record: International Union Against Tuberculosis and Lung Disease - https://ror.org/05s7dz794,International Union Against Tuberculosis and Lung Disease,https://ror.org/05s7dz794,https://ror.org/037x4qk98,International Union Against Tuberculosis and Lung Disease,Successor,Production +7,https://github.com/ror-community/ror-updates/issues/7,Investigate record: https://ror.org/01br3aa17,Biophysics Center of Armenian,https://ror.org/01br3aa17,https://ror.org/02yqgb753,Life Sciences International Postgraduate Educational Center,Successor,Production +7,https://github.com/ror-community/ror-updates/issues/7,Investigate record: https://ror.org/01br3aa17,Life Sciences International Postgraduate Educational Center,https://ror.org/02yqgb753,https://ror.org/01br3aa17,Biophysics Center of Armenian,Predecessor,Release +481,https://github.com/ror-community/ror-updates/issues/481,Redirect Laboratory of Hydrology and Geochemistry (https://ror.org/03y81da23),Laboratory of Hydrology and Geochemistry,https://ror.org/03y81da23,https://ror.org/0530qwm02,Earth and Environment Institute of Strasbourg,Successor,Production +481,https://github.com/ror-community/ror-updates/issues/481,Redirect Laboratory of Hydrology and Geochemistry (https://ror.org/03y81da23),Earth and Environment Institute of Strasbourg,https://ror.org/0530qwm02,https://ror.org/03y81da23,Laboratory of Hydrology and Geochemistry,Predecessor,Release +1311,https://github.com/ror-community/ror-updates/issues/1311,Withdraw existing ROR record: International Federation of Library Associations and Institutions - https://ror.org/02zbz4g27,International Federation of Library Associations and Institutions,https://ror.org/02zbz4g27,https://ror.org/026gatw61,International Federation of Library Associations and Institutions,Successor,Production +922,https://github.com/ror-community/ror-updates/issues/922,"Deprecate an existing ROR record: + +Department of Biomedicine Baselhttps://ror.org/03ybx0x41",Department of Biomedicine Basel,https://ror.org/03ybx0x41,https://ror.org/02s6k3f65,University of Basel,Successor,Production +1035,https://github.com/ror-community/ror-updates/issues/1035,Add a new organization to ROR: Kansai Photon Science Institute,Kansai Photon Science Institute,https://ror.org/051dbx029,https://ror.org/020rbyg91,National Institutes for Quantum and Radiological Science and Technology,Parent,Production +1035,https://github.com/ror-community/ror-updates/issues/1035,Add a new organization to ROR: Kansai Photon Science Institute,National Institutes for Quantum and Radiological Science and Technology,https://ror.org/020rbyg91,https://ror.org/051dbx029,Kansai Photon Science Institute,Child,Release +1181,https://github.com/ror-community/ror-updates/issues/1181,"Add a new organization to ROR: + +The Kearney Agricultural Research and Extension Center (KARE)",Kearney Agricultural Research and Extension Center,https://ror.org/04kjrxx07,https://ror.org/03t0t6y08,University of California Division of Agriculture and Natural Resources,Parent,Production +1181,https://github.com/ror-community/ror-updates/issues/1181,"Add a new organization to ROR: + +The Kearney Agricultural Research and Extension Center (KARE)",University of California Division of Agriculture and Natural Resources,https://ror.org/03t0t6y08,https://ror.org/04kjrxx07,Kearney Agricultural Research and Extension Center,Child,Release diff --git a/status-test/updates/00pdx2849.json b/status-test/updates/00pdx2849.json new file mode 100644 index 000000000..1cd2e91a6 --- /dev/null +++ b/status-test/updates/00pdx2849.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00pdx2849", + "name": "Conselleria de Sanitat Universal i Salut Pública", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Generalitat Valenciana", + "type": "Parent", + "id": "https://ror.org/0097mvx21" + } + ], + "addresses": [ + { + "lat": 39.46975, + "lng": -0.37739, + "state": null, + "state_code": null, + "city": "Valencia", + "geonames_city": { + "id": 2509954, + "city": "Valencia", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Valencia", + "id": 2509951, + "ascii_name": "Valencia", + "code": "ES.60.V" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.san.gva.es/" + ], + "aliases": [ + "Conselleria de Sanitat" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.417564.5", + "all": "grid.417564.5" + } + } +} \ No newline at end of file diff --git a/status-test/updates/01790dx02.json b/status-test/updates/01790dx02.json new file mode 100644 index 000000000..9b4634d73 --- /dev/null +++ b/status-test/updates/01790dx02.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01790dx02", + "name": "Shanxi Provincial Cancer Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.93789, + "lng": 120.54292, + "state": null, + "state_code": null, + "city": "Shanxi", + "geonames_city": { + "id": 7076747, + "city": "Shanxi", + "geonames_admin1": { + "name": "Liaoning", + "id": 2036115, + "ascii_name": "Liaoning", + "code": "CN.19" + }, + "geonames_admin2": { + "name": "Huludao Shi", + "id": 2036430, + "ascii_name": "Huludao Shi", + "code": "CN.19.2114" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.sxzlyy.com" + ], + "aliases": [ + "Shanxi Tumor Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "山西省肿瘤医院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1758 2596" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30293414" + ] + }, + "GRID": { + "preferred": "grid.440201.3", + "all": "grid.440201.3" + } + } +} \ No newline at end of file diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json new file mode 100644 index 000000000..0bfd78b8b --- /dev/null +++ b/status-test/updates/01br3aa17.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01br3aa17", + "name": "Biophysics Center of Armenian", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Academy of Sciences of Armenia", + "type": "Parent", + "id": "https://ror.org/04mczx267" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://ipia.sci.am/~biophys/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "GRID": { + "preferred": "grid.429569.5", + "all": "grid.429569.5" + } + } +} \ No newline at end of file diff --git a/status-test/updates/01zbnvs85.json b/status-test/updates/01zbnvs85.json new file mode 100644 index 000000000..3732ea1a8 --- /dev/null +++ b/status-test/updates/01zbnvs85.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/01zbnvs85", + "name": "Meta (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Facebook (Israel)", + "type": "Child", + "id": "https://ror.org/02388em19" + }, + { + "label": "Facebook (United Kingdom)", + "type": "Child", + "id": "https://ror.org/020ye1821" + } + ], + "addresses": [ + { + "lat": 37.45383, + "lng": -122.18219, + "state": null, + "state_code": null, + "city": "Menlo Park", + "geonames_city": { + "id": 5372223, + "city": "Menlo Park", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "San Mateo", + "id": 5392427, + "ascii_name": "San Mateo", + "code": "US.CA.081" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.facebook.com/" + ], + "aliases": [ + "Meta Platforms", + "Facebook" + ], + "acronyms": [ + "FB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Facebook", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0615 529X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100005801" + ] + }, + "Wikidata": { + "preferred": "Q380", + "all": [ + "Q380" + ] + }, + "GRID": { + "preferred": "grid.453567.6", + "all": "grid.453567.6" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json new file mode 100644 index 000000000..74ac37638 --- /dev/null +++ b/status-test/updates/02zbz4g27.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02zbz4g27", + "name": "International Federation of Library Associations and Institutions", + "email_address": null, + "ip_addresses": [], + "established": 1927, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "name": "British Columbia", + "id": 5909050, + "ascii_name": "British Columbia", + "code": "CA.02" + }, + "geonames_admin2": { + "name": "Metro Vancouver Regional District", + "id": 5965814, + "ascii_name": "Metro Vancouver Regional District", + "code": "CA.02.5915" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.ifla.org/" + ], + "aliases": [], + "acronyms": [ + "IFLA" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "preferred": null, + "all": [ + "501100001714" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q50376880" + ] + }, + "GRID": { + "preferred": "grid.417813.8", + "all": "grid.417813.8" + } + } +} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json new file mode 100644 index 000000000..b8260e9dc --- /dev/null +++ b/status-test/updates/03y81da23.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03y81da23", + "name": "Laboratory of Hydrology and Geochemistry", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://lhyges.unistra.fr/-Generale-?lang=en" + ], + "aliases": [], + "acronyms": [ + "LHyGes" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Laboratoire d’HYdrologie et de GEochimie", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2299 9140" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR7517" + ] + }, + "GRID": { + "preferred": "grid.469417.9", + "all": "grid.469417.9" + } + } +} \ No newline at end of file diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json new file mode 100644 index 000000000..3d71fdc7d --- /dev/null +++ b/status-test/updates/03ybx0x41.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03ybx0x41", + "name": "Department of Biomedicine Basel", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University Children’s Hospital Basel", + "type": "Parent", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Parent", + "id": "https://ror.org/04k51q396" + }, + { + "label": "University of Basel", + "type": "Parent", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://biomedizin.unibas.ch/" + ], + "aliases": [ + "Department of Biological and Clinical Sciences" + ], + "acronyms": [ + "DBM" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q22387380" + ] + }, + "GRID": { + "preferred": "grid.509969.a", + "all": "grid.509969.a" + } + } +} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json new file mode 100644 index 000000000..965c400fa --- /dev/null +++ b/status-test/updates/05s7dz794.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/05s7dz794", + "name": "International Union Against Tuberculosis and Lung Disease", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.theunion.org/" + ], + "aliases": [ + "The Union" + ], + "acronyms": [ + "UATLD" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Union_Against_Tuberculosis_and_Lung_Disease", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "501100005850", + "all": [ + "501100005850" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30268057" + ] + }, + "GRID": { + "preferred": "grid.475288.4", + "all": "grid.475288.4" + } + } +} \ No newline at end of file From 90c2dd4623078b72268820ecd199447d574d5d15 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 19:40:02 +0000 Subject: [PATCH 20/49] Apply relationship changes to files --- status-test/new/04kjrxx07.json | 8 ++- status-test/new/051dbx029.json | 8 ++- status-test/updates/01br3aa17.json | 5 ++ status-test/updates/020rbyg91.json | 106 +++++++++++++++++++++++++++++ status-test/updates/02yqgb753.json | 91 +++++++++++++++++++++++++ status-test/updates/02zbz4g27.json | 8 ++- status-test/updates/03t0t6y08.json | 99 +++++++++++++++++++++++++++ status-test/updates/03y81da23.json | 5 ++ status-test/updates/03ybx0x41.json | 2 +- status-test/updates/0530qwm02.json | 97 ++++++++++++++++++++++++++ status-test/updates/05s7dz794.json | 8 ++- 11 files changed, 432 insertions(+), 5 deletions(-) create mode 100644 status-test/updates/020rbyg91.json create mode 100644 status-test/updates/02yqgb753.json create mode 100644 status-test/updates/03t0t6y08.json create mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b3efb5ff6..b4361343d 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,7 +26,13 @@ } }, "established": 1965, - "relationships": [], + "relationships": [ + { + "label": "University of California Division of Agriculture and Natural Resources", + "type": "Parent", + "id": "https://ror.org/03t0t6y08" + } + ], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index 4006fff10..d86a54e01 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,7 +21,13 @@ } }, "established": null, - "relationships": [], + "relationships": [ + { + "label": "National Institutes for Quantum and Radiological Science and Technology", + "type": "Parent", + "id": "https://ror.org/020rbyg91" + } + ], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 0bfd78b8b..3a2412e95 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,6 +12,11 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" + }, + { + "label": "Life Sciences International Postgraduate Educational Center", + "type": "Successor", + "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json new file mode 100644 index 000000000..ed3994f21 --- /dev/null +++ b/status-test/updates/020rbyg91.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/020rbyg91", + "name": "National Institutes for Quantum and Radiological Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kansai Photon Science Institute", + "type": "Child", + "id": "https://ror.org/051dbx029" + } + ], + "addresses": [ + { + "lat": 35.6, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Chiba", + "geonames_city": { + "id": 2113015, + "city": "Chiba", + "geonames_admin1": { + "name": "Chiba", + "id": 2113014, + "ascii_name": "Chiba", + "code": "JP.04" + }, + "geonames_admin2": { + "name": "Chiba-shi", + "id": 2113012, + "ascii_name": "Chiba-shi", + "code": "JP.04.2113012" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.qst.go.jp" + ], + "aliases": [], + "acronyms": [ + "QST" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "量子科学技術研究開発機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5900 003X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006327" + ] + }, + "Wikidata": { + "preferred": "Q24067079", + "all": [ + "Q24067079", + "Q39022389" + ] + }, + "GRID": { + "preferred": "grid.482503.8", + "all": "grid.482503.8" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json new file mode 100644 index 000000000..f7bd3c951 --- /dev/null +++ b/status-test/updates/02yqgb753.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yqgb753", + "name": "Life Sciences International Postgraduate Educational Center", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United Nations Educational, Scientific and Cultural Organization", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.biophys.am/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q77077134" + ] + }, + "GRID": { + "preferred": "grid.506497.9", + "all": "grid.506497.9" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index 74ac37638..d19ba3249 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Federation of Library Associations and Institutions", + "type": "Successor", + "id": "https://ror.org/026gatw61" + } + ], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json new file mode 100644 index 000000000..2dfb32e6c --- /dev/null +++ b/status-test/updates/03t0t6y08.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03t0t6y08", + "name": "University of California Division of Agriculture and Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Kearney Agricultural Research and Extension Center", + "type": "Child", + "id": "https://ror.org/04kjrxx07" + } + ], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://ucanr.edu/" + ], + "aliases": [], + "acronyms": [ + "ANR" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2166 8120" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006488" + ] + }, + "GRID": { + "preferred": "grid.300433.7", + "all": "grid.300433.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index b8260e9dc..f107f772a 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,6 +22,11 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Successor", + "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index 3d71fdc7d..e3cc32031 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Parent", + "type": "Successor", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json new file mode 100644 index 000000000..6a2fd873a --- /dev/null +++ b/status-test/updates/0530qwm02.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0530qwm02", + "name": "Earth and Environment Institute of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ites.unistra.fr/" + ], + "aliases": [], + "acronyms": [ + "ITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Terre et Environnement de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 965c400fa..15d58cde0 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Union Against Tuberculosis and Lung Disease", + "type": "Successor", + "id": "https://ror.org/037x4qk98" + } + ], "addresses": [ { "lat": 40.71427, From 6b0e82876d06690979519ede35c93e68b2de6da9 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 20:57:10 +0000 Subject: [PATCH 21/49] Apply relationship changes to files --- status-test/updates/00pg6eq24.json | 313 +++++++++++++++++++++++ status-test/updates/02jhjzd11.json | 88 +++++++ status-test/updates/02nhqek82.json | 107 ++++++++ status-test/updates/02s6k3f65.json | 144 +++++++++++ status-test/updates/02yqgb753.json | 5 - status-test/updates/04k51q396.json | 107 ++++++++ status-test/updates/04kdfz702.json | 394 +++++++++++++++++++++++++++++ status-test/updates/04mczx267.json | 173 +++++++++++++ status-test/updates/0530qwm02.json | 5 - 9 files changed, 1326 insertions(+), 10 deletions(-) create mode 100644 status-test/updates/00pg6eq24.json create mode 100644 status-test/updates/02jhjzd11.json create mode 100644 status-test/updates/02nhqek82.json create mode 100644 status-test/updates/02s6k3f65.json create mode 100644 status-test/updates/04k51q396.json create mode 100644 status-test/updates/04kdfz702.json create mode 100644 status-test/updates/04mczx267.json diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json new file mode 100644 index 000000000..8ecaea004 --- /dev/null +++ b/status-test/updates/00pg6eq24.json @@ -0,0 +1,313 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": "", + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", + "type": "Related", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Immune Response and Development in Insects", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/01epym565" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Biophotonics and Pharmacology", + "type": "Child", + "id": "https://ror.org/0032sc770" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "type": "Child", + "id": "https://ror.org/057916623" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Regenerative NanoMedicine", + "type": "Child", + "id": "https://ror.org/0032jvj22" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.en.unistra.fr/index.php?id=21707" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Université de Strasbourg", + "iso639": "fr" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2157 9291" + ] + }, + "FundRef": { + "preferred": "501100003768", + "all": [ + "501100003768", + "501100003998" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "722824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q157575" + ] + }, + "GRID": { + "preferred": "grid.11843.3f", + "all": "grid.11843.3f" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json new file mode 100644 index 000000000..30fb80bb8 --- /dev/null +++ b/status-test/updates/02jhjzd11.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02jhjzd11", + "name": "National School for Water and Environmental Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://engees.unistra.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ENGEES" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8652 7065" + ] + }, + "GRID": { + "preferred": "grid.466385.a", + "all": "grid.466385.a" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json new file mode 100644 index 000000000..f7b07f238 --- /dev/null +++ b/status-test/updates/02nhqek82.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02nhqek82", + "name": "University Children’s Hospital Basel", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.ukbb.ch/" + ], + "aliases": [], + "acronyms": [ + "UKBB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", + "labels": [ + { + "label": "Universitäts-Kinderspital beider Basel", + "iso639": "de" + }, + { + "label": "Hôpital universitaire pédiatrique des deux Bâle", + "iso639": "fr" + }, + { + "label": "University Children’s Hospital Basel", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0509 0981" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2496240" + ] + }, + "GRID": { + "preferred": "grid.412347.7", + "all": "grid.412347.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json new file mode 100644 index 000000000..3a6582644 --- /dev/null +++ b/status-test/updates/02s6k3f65.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/02s6k3f65", + "name": "University of Basel", + "email_address": "", + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Friedrich Miescher Institute", + "type": "Related", + "id": "https://ror.org/01bmjkv45" + }, + { + "label": "Swiss Tropical and Public Health Institute", + "type": "Related", + "id": "https://ror.org/03adhka07" + }, + { + "label": "University Children’s Hospital Basel", + "type": "Related", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Related", + "id": "https://ror.org/04k51q396" + }, + { + "label": "Universitäre Psychiatrische Kliniken Basel", + "type": "Related", + "id": "https://ror.org/05fw3jg78" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unibas.ch/de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", + "labels": [ + { + "label": "Universität Basel", + "iso639": "de" + }, + { + "label": "Université de Bâle", + "iso639": "fr" + }, + { + "label": "Università di Basilea", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0642" + ] + }, + "FundRef": { + "preferred": "100008375", + "all": [ + "100008375", + "501100008595", + "100008550" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "427614" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q372608" + ] + }, + "GRID": { + "preferred": "grid.6612.3", + "all": "grid.6612.3" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json index f7bd3c951..814ef3773 100644 --- a/status-test/updates/02yqgb753.json +++ b/status-test/updates/02yqgb753.json @@ -12,11 +12,6 @@ "label": "United Nations Educational, Scientific and Cultural Organization", "type": "Parent", "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" } ], "addresses": [ diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json new file mode 100644 index 000000000..6640f0adb --- /dev/null +++ b/status-test/updates/04k51q396.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04k51q396", + "name": "University Hospital of Basel", + "email_address": null, + "ip_addresses": [], + "established": 1083, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unispital-basel.ch/" + ], + "aliases": [], + "acronyms": [ + "USB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", + "labels": [ + { + "label": "Universitätsspital Basel", + "iso639": "de" + }, + { + "label": "University Hospital of Basel", + "iso639": "en" + }, + { + "label": "Hôpital universitaire de Bâle", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "40190980" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1689257" + ] + }, + "GRID": { + "preferred": "grid.410567.1", + "all": "grid.410567.1" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json new file mode 100644 index 000000000..7cc54310c --- /dev/null +++ b/status-test/updates/04kdfz702.json @@ -0,0 +1,394 @@ +{ + "id": "https://ror.org/04kdfz702", + "name": "Institut National des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Besançon Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/032582s48" + }, + { + "label": "Centre National de Recherches Météorologiques", + "type": "Child", + "id": "https://ror.org/004rej139" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Centre for Research and Teaching in Environmental Geoscience", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "GeoAzur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Geosciences Paris Sud", + "type": "Child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Haute-Provence Observatory", + "type": "Child", + "id": "https://ror.org/01gtjxz83" + }, + { + "label": "Institut UTINAM", + "type": "Child", + "id": "https://ror.org/02h0g9r59" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Child", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Interdisciplinary Laboratory for Continental Environments", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Sciences de l'Univers au Cerfacs", + "type": "Child", + "id": "https://ror.org/03ck9wz82" + }, + { + "label": "Laboratoire d'Aérologie", + "type": "Child", + "id": "https://ror.org/017d9yp59" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", + "type": "Child", + "id": "https://ror.org/03fgt5a62" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Laboratoire de Planétologie et Géodynamique de Nantes", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire de l'Atmosphère et des Cyclones", + "type": "Child", + "id": "https://ror.org/03wsemq03" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory Universe and Theories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "Child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratory of Microbial Oceanography", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Observatoires des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/040bzgy82" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Research Institute in Astrophysics and Planetology", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "Sytèmes de Référence Temps Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Villefranche Oceanographic Laboratory", + "type": "Child", + "id": "https://ror.org/05r5y6641" + } + ], + "addresses": [ + { + "lat": 48.79395, + "lng": 2.49323, + "state": null, + "state_code": null, + "city": "Saint-Maur-des-Fossés", + "geonames_city": { + "id": 2978179, + "city": "Saint-Maur-des-Fossés", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.insu.cnrs.fr/en" + ], + "aliases": [], + "acronyms": [ + "INSU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2154 1736" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004617" + ] + }, + "GRID": { + "preferred": "grid.452348.c", + "all": "grid.452348.c" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json new file mode 100644 index 000000000..307a9cdb7 --- /dev/null +++ b/status-test/updates/04mczx267.json @@ -0,0 +1,173 @@ +{ + "id": "https://ror.org/04mczx267", + "name": "National Academy of Sciences of Armenia", + "email_address": "", + "ip_addresses": [], + "established": 1943, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Byurakan Astrophysical Observatory", + "type": "Child", + "id": "https://ror.org/0010mjy66" + }, + { + "label": "H.Buniatian Institute of Biochemistry", + "type": "Child", + "id": "https://ror.org/01gpc1r56" + }, + { + "label": "Institute for Informatics and Automation Problems", + "type": "Child", + "id": "https://ror.org/04a8k4p47" + }, + { + "label": "Institute for Physical Research", + "type": "Child", + "id": "https://ror.org/0187pag34" + }, + { + "label": "Institute of Archaeology and Ethnography", + "type": "Child", + "id": "https://ror.org/02af4h206" + }, + { + "label": "Institute of Botany", + "type": "Child", + "id": "https://ror.org/05mpgew40" + }, + { + "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", + "type": "Child", + "id": "https://ror.org/00588h422" + }, + { + "label": "Institute of Geological Sciences", + "type": "Child", + "id": "https://ror.org/03r6rhw30" + }, + { + "label": "Institute of Molecular Biology", + "type": "Child", + "id": "https://ror.org/03t8mqd25" + }, + { + "label": "Institute of Philosophy, Sociology and Law", + "type": "Child", + "id": "https://ror.org/02b7e7p97" + }, + { + "label": "Institute of Radiophysics and Electronics", + "type": "Child", + "id": "https://ror.org/051jgxz75" + }, + { + "label": "L. A. Orbeli Institute of Physiology NAS RA", + "type": "Child", + "id": "https://ror.org/02gse4n09" + }, + { + "label": "Scientific Center of Zoology and Hydroecology", + "type": "Child", + "id": "https://ror.org/00t5ymp38" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.sci.am/" + ], + "aliases": [ + "Armenian National Academy of Sciences" + ], + "acronyms": [ + "NAS RA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", + "labels": [ + { + "label": "Հայաստանի գիտությունների ազգային ակադեմիա", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1146 7878" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008721" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3712844" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2379496" + ] + }, + "GRID": { + "preferred": "grid.418094.0", + "all": "grid.418094.0" + } + } +} \ No newline at end of file diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json index 6a2fd873a..a62af7401 100644 --- a/status-test/updates/0530qwm02.json +++ b/status-test/updates/0530qwm02.json @@ -22,11 +22,6 @@ "label": "National School for Water and Environmental Engineering", "type": "Parent", "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" } ], "addresses": [ From 85dbd20c13c10b585aa7ddbcd4596bb2c8b7bfa2 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 21:02:14 +0000 Subject: [PATCH 22/49] Apply relationship changes to files --- status-test/updates/02yqgb753.json | 5 +++++ status-test/updates/0530qwm02.json | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json index 814ef3773..f7bd3c951 100644 --- a/status-test/updates/02yqgb753.json +++ b/status-test/updates/02yqgb753.json @@ -12,6 +12,11 @@ "label": "United Nations Educational, Scientific and Cultural Organization", "type": "Parent", "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" } ], "addresses": [ diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json index a62af7401..6a2fd873a 100644 --- a/status-test/updates/0530qwm02.json +++ b/status-test/updates/0530qwm02.json @@ -22,6 +22,11 @@ "label": "National School for Water and Environmental Engineering", "type": "Parent", "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" } ], "addresses": [ From 2592814df359c24e7475e0963af8e29f9599a3f2 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 21:03:25 +0000 Subject: [PATCH 23/49] Apply relationship changes to files --- status-test/updates/02yqgb753.json | 5 ----- status-test/updates/0530qwm02.json | 5 ----- 2 files changed, 10 deletions(-) diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json index f7bd3c951..814ef3773 100644 --- a/status-test/updates/02yqgb753.json +++ b/status-test/updates/02yqgb753.json @@ -12,11 +12,6 @@ "label": "United Nations Educational, Scientific and Cultural Organization", "type": "Parent", "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" } ], "addresses": [ diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json index 6a2fd873a..a62af7401 100644 --- a/status-test/updates/0530qwm02.json +++ b/status-test/updates/0530qwm02.json @@ -22,11 +22,6 @@ "label": "National School for Water and Environmental Engineering", "type": "Parent", "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" } ], "addresses": [ From ad3df077b6f402708db7227b888126d9771c3d8d Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 21:07:43 +0000 Subject: [PATCH 24/49] Apply relationship changes to files --- status-test/updates/02yqgb753.json | 5 +++++ status-test/updates/0530qwm02.json | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json index 814ef3773..f7bd3c951 100644 --- a/status-test/updates/02yqgb753.json +++ b/status-test/updates/02yqgb753.json @@ -12,6 +12,11 @@ "label": "United Nations Educational, Scientific and Cultural Organization", "type": "Parent", "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" } ], "addresses": [ diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json index a62af7401..6a2fd873a 100644 --- a/status-test/updates/0530qwm02.json +++ b/status-test/updates/0530qwm02.json @@ -22,6 +22,11 @@ "label": "National School for Water and Environmental Engineering", "type": "Parent", "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" } ], "addresses": [ From a8e3e5c8e2c8b419bfd157136b49b3abe75f793f Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 21:08:43 +0000 Subject: [PATCH 25/49] Apply relationship changes to files --- status-test/updates/02yqgb753.json | 5 ----- status-test/updates/0530qwm02.json | 5 ----- 2 files changed, 10 deletions(-) diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json index f7bd3c951..814ef3773 100644 --- a/status-test/updates/02yqgb753.json +++ b/status-test/updates/02yqgb753.json @@ -12,11 +12,6 @@ "label": "United Nations Educational, Scientific and Cultural Organization", "type": "Parent", "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" } ], "addresses": [ diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json index 6a2fd873a..a62af7401 100644 --- a/status-test/updates/0530qwm02.json +++ b/status-test/updates/0530qwm02.json @@ -22,11 +22,6 @@ "label": "National School for Water and Environmental Engineering", "type": "Parent", "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" } ], "addresses": [ From d5cae5c694f13632dcaa2729ad39e46032b5e978 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 21:16:50 +0000 Subject: [PATCH 26/49] Apply relationship changes to files --- status-test/updates/02yqgb753.json | 5 +++++ status-test/updates/0530qwm02.json | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json index 814ef3773..f7bd3c951 100644 --- a/status-test/updates/02yqgb753.json +++ b/status-test/updates/02yqgb753.json @@ -12,6 +12,11 @@ "label": "United Nations Educational, Scientific and Cultural Organization", "type": "Parent", "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" } ], "addresses": [ diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json index a62af7401..6a2fd873a 100644 --- a/status-test/updates/0530qwm02.json +++ b/status-test/updates/0530qwm02.json @@ -22,6 +22,11 @@ "label": "National School for Water and Environmental Engineering", "type": "Parent", "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" } ], "addresses": [ From af60a5fc6119629272ee452b565a2334e74a7498 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 21:17:30 +0000 Subject: [PATCH 27/49] Apply relationship changes to files --- status-test/updates/02yqgb753.json | 5 ----- status-test/updates/0530qwm02.json | 5 ----- 2 files changed, 10 deletions(-) diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json index f7bd3c951..814ef3773 100644 --- a/status-test/updates/02yqgb753.json +++ b/status-test/updates/02yqgb753.json @@ -12,11 +12,6 @@ "label": "United Nations Educational, Scientific and Cultural Organization", "type": "Parent", "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" } ], "addresses": [ diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json index 6a2fd873a..a62af7401 100644 --- a/status-test/updates/0530qwm02.json +++ b/status-test/updates/0530qwm02.json @@ -22,11 +22,6 @@ "label": "National School for Water and Environmental Engineering", "type": "Parent", "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" } ], "addresses": [ From 117eecf5277f852124b515ceef495c057e72e12a Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 21:19:40 +0000 Subject: [PATCH 28/49] Apply relationship changes to files --- status-test/updates/02yqgb753.json | 5 +++++ status-test/updates/0530qwm02.json | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json index 814ef3773..f7bd3c951 100644 --- a/status-test/updates/02yqgb753.json +++ b/status-test/updates/02yqgb753.json @@ -12,6 +12,11 @@ "label": "United Nations Educational, Scientific and Cultural Organization", "type": "Parent", "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" } ], "addresses": [ diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json index a62af7401..6a2fd873a 100644 --- a/status-test/updates/0530qwm02.json +++ b/status-test/updates/0530qwm02.json @@ -22,6 +22,11 @@ "label": "National School for Water and Environmental Engineering", "type": "Parent", "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" } ], "addresses": [ From cae64b24282a312378926c5017bef32d4bca6eed Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Thu, 13 Oct 2022 16:20:25 -0500 Subject: [PATCH 29/49] pull correct remove relationships script --- .github/workflows/remove_relationships.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/remove_relationships.yml b/.github/workflows/remove_relationships.yml index f2ca7c08c..3cad39ca7 100644 --- a/.github/workflows/remove_relationships.yml +++ b/.github/workflows/remove_relationships.yml @@ -31,7 +31,7 @@ jobs: python -m pip install --upgrade pip pip install requests==2.23.0 pip install git+https://github.com/ror-community/update_address.git - curl https://raw.githubusercontent.com/ror-community/curation_ops/main/remove_relationships/remove_relationships.py -o remove_relationships.py + curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/remove_relationships/remove_relationships.py -o remove_relationships.py python remove_relationships.py relationships.csv - name: commit error file if: ${{ steps.remrelshp.outcome != 'success'}} From ad26830645f3ff69bb13d099a272280162655a76 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 09:15:35 -0500 Subject: [PATCH 30/49] reset status-test files --- status-test/new/04kjrxx07.json | 8 +- status-test/new/051dbx029.json | 8 +- status-test/updates/00pg6eq24.json | 313 ----------------------- status-test/updates/01br3aa17.json | 5 - status-test/updates/020rbyg91.json | 106 -------- status-test/updates/02jhjzd11.json | 88 ------- status-test/updates/02nhqek82.json | 107 -------- status-test/updates/02s6k3f65.json | 144 ----------- status-test/updates/02yqgb753.json | 91 ------- status-test/updates/02zbz4g27.json | 8 +- status-test/updates/03t0t6y08.json | 99 -------- status-test/updates/03y81da23.json | 5 - status-test/updates/03ybx0x41.json | 2 +- status-test/updates/04k51q396.json | 107 -------- status-test/updates/04kdfz702.json | 394 ----------------------------- status-test/updates/04mczx267.json | 173 ------------- status-test/updates/0530qwm02.json | 97 ------- status-test/updates/05s7dz794.json | 8 +- 18 files changed, 5 insertions(+), 1758 deletions(-) delete mode 100644 status-test/updates/00pg6eq24.json delete mode 100644 status-test/updates/020rbyg91.json delete mode 100644 status-test/updates/02jhjzd11.json delete mode 100644 status-test/updates/02nhqek82.json delete mode 100644 status-test/updates/02s6k3f65.json delete mode 100644 status-test/updates/02yqgb753.json delete mode 100644 status-test/updates/03t0t6y08.json delete mode 100644 status-test/updates/04k51q396.json delete mode 100644 status-test/updates/04kdfz702.json delete mode 100644 status-test/updates/04mczx267.json delete mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b4361343d..b3efb5ff6 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,13 +26,7 @@ } }, "established": 1965, - "relationships": [ - { - "label": "University of California Division of Agriculture and Natural Resources", - "type": "Parent", - "id": "https://ror.org/03t0t6y08" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index d86a54e01..4006fff10 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,13 +21,7 @@ } }, "established": null, - "relationships": [ - { - "label": "National Institutes for Quantum and Radiological Science and Technology", - "type": "Parent", - "id": "https://ror.org/020rbyg91" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json deleted file mode 100644 index 8ecaea004..000000000 --- a/status-test/updates/00pg6eq24.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "id": "https://ror.org/00pg6eq24", - "name": "University of Strasbourg", - "email_address": "", - "ip_addresses": [], - "established": 1538, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", - "type": "Related", - "id": "https://ror.org/02zwf7d57" - }, - { - "label": "Hôpitaux Universitaires de Strasbourg", - "type": "Related", - "id": "https://ror.org/04bckew43" - }, - { - "label": "Architecture et Réactivité de l'arN", - "type": "Child", - "id": "https://ror.org/03xmjtz19" - }, - { - "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", - "type": "Child", - "id": "https://ror.org/007xqmx73" - }, - { - "label": "Biomatériaux et Bioingénierie", - "type": "Child", - "id": "https://ror.org/05vcax154" - }, - { - "label": "Biotechnologie et Signalisation Cellulaire", - "type": "Child", - "id": "https://ror.org/047fwb937" - }, - { - "label": "Bureau for Economic Theory and Applications", - "type": "Child", - "id": "https://ror.org/05em8ne27" - }, - { - "label": "Fédération de Recherche PhotoVoltaïque", - "type": "Child", - "id": "https://ror.org/059fn5f50" - }, - { - "label": "Grapevine Health and Wine Quality", - "type": "Child", - "id": "https://ror.org/0291jbz11" - }, - { - "label": "Génétique Moléculaire Génomique Microbiologie", - "type": "Child", - "id": "https://ror.org/05n4nmn13" - }, - { - "label": "Hubert Curien Pluridisciplinary Institute", - "type": "Child", - "id": "https://ror.org/01g3mb532" - }, - { - "label": "Immune Response and Development in Insects", - "type": "Child", - "id": "https://ror.org/030przz70" - }, - { - "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", - "type": "Child", - "id": "https://ror.org/041v2hk34" - }, - { - "label": "Institut Charles Sadron", - "type": "Child", - "id": "https://ror.org/05whrjc31" - }, - { - "label": "Institut de Biologie Moléculaire des Plantes", - "type": "Child", - "id": "https://ror.org/01jm8fn98" - }, - { - "label": "Institut de Chimie de Strasbourg", - "type": "Child", - "id": "https://ror.org/00se7bf12" - }, - { - "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", - "type": "Child", - "id": "https://ror.org/02za18p66" - }, - { - "label": "Institut de Recherche Mathématique Avancée", - "type": "Child", - "id": "https://ror.org/02hwgty18" - }, - { - "label": "Institut de Science et d'Ingénierie Supramoléculaires", - "type": "Child", - "id": "https://ror.org/00xts7d02" - }, - { - "label": "Institute for Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/05qpmg879" - }, - { - "label": "Institute of Cellular and Integrative Neurosciences", - "type": "Child", - "id": "https://ror.org/025mhd687" - }, - { - "label": "Institute of Chemistry and Processes for Energy, Environment and Health", - "type": "Child", - "id": "https://ror.org/02tn0tm63" - }, - { - "label": "Institute of Genetics and Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/0015ws592" - }, - { - "label": "Laboratoire Image, Ville, Environnement", - "type": "Child", - "id": "https://ror.org/03x8fem72" - }, - { - "label": "Laboratoire de Chimie Moléculaire", - "type": "Child", - "id": "https://ror.org/01epym565" - }, - { - "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", - "type": "Child", - "id": "https://ror.org/01m71e459" - }, - { - "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", - "type": "Child", - "id": "https://ror.org/008pt4x48" - }, - { - "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", - "type": "Child", - "id": "https://ror.org/00k4e5n71" - }, - { - "label": "Laboratory for Therapeutic Innovation", - "type": "Child", - "id": "https://ror.org/02g4mxc89" - }, - { - "label": "Laboratory of Biophotonics and Pharmacology", - "type": "Child", - "id": "https://ror.org/0032sc770" - }, - { - "label": "Laboratory of Design and Application of Bioactive Molecules", - "type": "Child", - "id": "https://ror.org/00rh71z37" - }, - { - "label": "Laboratory of Molecular Anthropology and Image Synthesis", - "type": "Child", - "id": "https://ror.org/05w482q29" - }, - { - "label": "Maison Interuniversitaire des Sciences de l'Homme", - "type": "Child", - "id": "https://ror.org/02jm89840" - }, - { - "label": "Mitochondrie, stress oxydant et protection musculaire", - "type": "Child", - "id": "https://ror.org/05sc3hd12" - }, - { - "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", - "type": "Child", - "id": "https://ror.org/057916623" - }, - { - "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", - "type": "Child", - "id": "https://ror.org/00b4q1853" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Regenerative NanoMedicine", - "type": "Child", - "id": "https://ror.org/0032jvj22" - }, - { - "label": "Societies, Actors and Governement in Europe", - "type": "Child", - "id": "https://ror.org/00bhwwh42" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.en.unistra.fr/index.php?id=21707" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", - "labels": [ - { - "label": "Université de Strasbourg", - "iso639": "fr" - }, - { - "label": "Universität Straßburg", - "iso639": "de" - }, - { - "label": "Universitat d'Estrasburg", - "iso639": "ca" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2157 9291" - ] - }, - "FundRef": { - "preferred": "501100003768", - "all": [ - "501100003768", - "501100003998" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "722824" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q157575" - ] - }, - "GRID": { - "preferred": "grid.11843.3f", - "all": "grid.11843.3f" - } - } -} \ No newline at end of file diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 3a2412e95..0bfd78b8b 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,11 +12,6 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" - }, - { - "label": "Life Sciences International Postgraduate Educational Center", - "type": "Successor", - "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json deleted file mode 100644 index ed3994f21..000000000 --- a/status-test/updates/020rbyg91.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "id": "https://ror.org/020rbyg91", - "name": "National Institutes for Quantum and Radiological Science and Technology", - "email_address": null, - "ip_addresses": [], - "established": 2016, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "Kansai Photon Science Institute", - "type": "Child", - "id": "https://ror.org/051dbx029" - } - ], - "addresses": [ - { - "lat": 35.6, - "lng": 140.11667, - "state": null, - "state_code": null, - "city": "Chiba", - "geonames_city": { - "id": 2113015, - "city": "Chiba", - "geonames_admin1": { - "name": "Chiba", - "id": 2113014, - "ascii_name": "Chiba", - "code": "JP.04" - }, - "geonames_admin2": { - "name": "Chiba-shi", - "id": 2113012, - "ascii_name": "Chiba-shi", - "code": "JP.04.2113012" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 1861060 - } - ], - "links": [ - "https://www.qst.go.jp" - ], - "aliases": [], - "acronyms": [ - "QST" - ], - "status": "active", - "wikipedia_url": "", - "labels": [ - { - "label": "量子科学技術研究開発機構", - "iso639": "ja" - } - ], - "country": { - "country_name": "Japan", - "country_code": "JP" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 5900 003X" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100006327" - ] - }, - "Wikidata": { - "preferred": "Q24067079", - "all": [ - "Q24067079", - "Q39022389" - ] - }, - "GRID": { - "preferred": "grid.482503.8", - "all": "grid.482503.8" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json deleted file mode 100644 index 30fb80bb8..000000000 --- a/status-test/updates/02jhjzd11.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "id": "https://ror.org/02jhjzd11", - "name": "National School for Water and Environmental Engineering", - "email_address": null, - "ip_addresses": [], - "established": 1952, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://engees.unistra.fr/en/" - ], - "aliases": [], - "acronyms": [ - "ENGEES" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0000 8652 7065" - ] - }, - "GRID": { - "preferred": "grid.466385.a", - "all": "grid.466385.a" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json deleted file mode 100644 index f7b07f238..000000000 --- a/status-test/updates/02nhqek82.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/02nhqek82", - "name": "University Children’s Hospital Basel", - "email_address": null, - "ip_addresses": [], - "established": 1862, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.ukbb.ch/" - ], - "aliases": [], - "acronyms": [ - "UKBB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", - "labels": [ - { - "label": "Universitäts-Kinderspital beider Basel", - "iso639": "de" - }, - { - "label": "Hôpital universitaire pédiatrique des deux Bâle", - "iso639": "fr" - }, - { - "label": "University Children’s Hospital Basel", - "iso639": "en" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 0509 0981" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2496240" - ] - }, - "GRID": { - "preferred": "grid.412347.7", - "all": "grid.412347.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json deleted file mode 100644 index 3a6582644..000000000 --- a/status-test/updates/02s6k3f65.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "id": "https://ror.org/02s6k3f65", - "name": "University of Basel", - "email_address": "", - "ip_addresses": [], - "established": 1460, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Friedrich Miescher Institute", - "type": "Related", - "id": "https://ror.org/01bmjkv45" - }, - { - "label": "Swiss Tropical and Public Health Institute", - "type": "Related", - "id": "https://ror.org/03adhka07" - }, - { - "label": "University Children’s Hospital Basel", - "type": "Related", - "id": "https://ror.org/02nhqek82" - }, - { - "label": "University Hospital of Basel", - "type": "Related", - "id": "https://ror.org/04k51q396" - }, - { - "label": "Universitäre Psychiatrische Kliniken Basel", - "type": "Related", - "id": "https://ror.org/05fw3jg78" - }, - { - "label": "Swiss National Data and Service Center for the Humanities", - "type": "Related", - "id": "https://ror.org/047f01g80" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unibas.ch/de" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", - "labels": [ - { - "label": "Universität Basel", - "iso639": "de" - }, - { - "label": "Université de Bâle", - "iso639": "fr" - }, - { - "label": "Università di Basilea", - "iso639": "it" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 1937 0642" - ] - }, - "FundRef": { - "preferred": "100008375", - "all": [ - "100008375", - "501100008595", - "100008550" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "427614" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q372608" - ] - }, - "GRID": { - "preferred": "grid.6612.3", - "all": "grid.6612.3" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json deleted file mode 100644 index f7bd3c951..000000000 --- a/status-test/updates/02yqgb753.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "id": "https://ror.org/02yqgb753", - "name": "Life Sciences International Postgraduate Educational Center", - "email_address": null, - "ip_addresses": [], - "established": 1977, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "United Nations Educational, Scientific and Cultural Organization", - "type": "Parent", - "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.biophys.am/" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "Wikidata": { - "preferred": null, - "all": [ - "Q77077134" - ] - }, - "GRID": { - "preferred": "grid.506497.9", - "all": "grid.506497.9" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index d19ba3249..74ac37638 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Federation of Library Associations and Institutions", - "type": "Successor", - "id": "https://ror.org/026gatw61" - } - ], + "relationships": [], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json deleted file mode 100644 index 2dfb32e6c..000000000 --- a/status-test/updates/03t0t6y08.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "id": "https://ror.org/03t0t6y08", - "name": "University of California Division of Agriculture and Natural Resources", - "email_address": null, - "ip_addresses": [], - "established": 1913, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of California System", - "type": "Parent", - "id": "https://ror.org/00pjdza24" - }, - { - "label": "Kearney Agricultural Research and Extension Center", - "type": "Child", - "id": "https://ror.org/04kjrxx07" - } - ], - "addresses": [ - { - "lat": 37.80437, - "lng": -122.2708, - "state": null, - "state_code": null, - "city": "Oakland", - "geonames_city": { - "id": 5378538, - "city": "Oakland", - "geonames_admin1": { - "name": "California", - "id": 5332921, - "ascii_name": "California", - "code": "US.CA" - }, - "geonames_admin2": { - "name": "Alameda", - "id": 5322745, - "ascii_name": "Alameda", - "code": "US.CA.001" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 6252001 - } - ], - "links": [ - "http://ucanr.edu/" - ], - "aliases": [], - "acronyms": [ - "ANR" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "United States", - "country_code": "US" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2166 8120" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100006488" - ] - }, - "GRID": { - "preferred": "grid.300433.7", - "all": "grid.300433.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index f107f772a..b8260e9dc 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,11 +22,6 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Successor", - "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index e3cc32031..3d71fdc7d 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Successor", + "type": "Parent", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json deleted file mode 100644 index 6640f0adb..000000000 --- a/status-test/updates/04k51q396.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/04k51q396", - "name": "University Hospital of Basel", - "email_address": null, - "ip_addresses": [], - "established": 1083, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unispital-basel.ch/" - ], - "aliases": [], - "acronyms": [ - "USB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", - "labels": [ - { - "label": "Universitätsspital Basel", - "iso639": "de" - }, - { - "label": "University Hospital of Basel", - "iso639": "en" - }, - { - "label": "Hôpital universitaire de Bâle", - "iso639": "fr" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "OrgRef": { - "preferred": null, - "all": [ - "40190980" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q1689257" - ] - }, - "GRID": { - "preferred": "grid.410567.1", - "all": "grid.410567.1" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json deleted file mode 100644 index 7cc54310c..000000000 --- a/status-test/updates/04kdfz702.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "id": "https://ror.org/04kdfz702", - "name": "Institut National des Sciences de l'Univers", - "email_address": null, - "ip_addresses": [], - "established": 1985, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "Astrophysique, Instrumentation et Modélisation", - "type": "Child", - "id": "https://ror.org/0015h8611" - }, - { - "label": "Besançon Astronomical Observatory", - "type": "Child", - "id": "https://ror.org/032582s48" - }, - { - "label": "Centre National de Recherches Météorologiques", - "type": "Child", - "id": "https://ror.org/004rej139" - }, - { - "label": "Centre d'Études Spatiales de la Biosphère", - "type": "Child", - "id": "https://ror.org/01225hq90" - }, - { - "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", - "type": "Child", - "id": "https://ror.org/01jt5ms28" - }, - { - "label": "Centre de Recherches Pétrographiques et Géochimiques", - "type": "Child", - "id": "https://ror.org/011nqat45" - }, - { - "label": "Centre for Astronomical Reseach of Lyon", - "type": "Child", - "id": "https://ror.org/0084x3h80" - }, - { - "label": "Centre for Research and Teaching in Environmental Geoscience", - "type": "Child", - "id": "https://ror.org/01pa4h393" - }, - { - "label": "Division Technique de I'INSU", - "type": "Child", - "id": "https://ror.org/01s48fc08" - }, - { - "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", - "type": "Child", - "id": "https://ror.org/01tsa0x55" - }, - { - "label": "Galaxies, Etoiles, Physique et Instrumentation", - "type": "Child", - "id": "https://ror.org/01920cw75" - }, - { - "label": "GeoAzur", - "type": "Child", - "id": "https://ror.org/05xtktk35" - }, - { - "label": "Geosciences Paris Sud", - "type": "Child", - "id": "https://ror.org/03s92mv58" - }, - { - "label": "Géosciences Environnement Toulouse", - "type": "Child", - "id": "https://ror.org/05k0qmv73" - }, - { - "label": "Géosciences Montpellier", - "type": "Child", - "id": "https://ror.org/024gts110" - }, - { - "label": "Géosciences Rennes", - "type": "Child", - "id": "https://ror.org/00vn0zc62" - }, - { - "label": "Haute-Provence Observatory", - "type": "Child", - "id": "https://ror.org/01gtjxz83" - }, - { - "label": "Institut UTINAM", - "type": "Child", - "id": "https://ror.org/02h0g9r59" - }, - { - "label": "Institut d'Astrophysique de Paris", - "type": "Child", - "id": "https://ror.org/022bnxw24" - }, - { - "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", - "type": "Child", - "id": "https://ror.org/002zc3t08" - }, - { - "label": "Institut de physique du globe de Paris", - "type": "Child", - "id": "https://ror.org/004gzqz66" - }, - { - "label": "Institut des Sciences de la Terre", - "type": "Child", - "id": "https://ror.org/01cf2sz15" - }, - { - "label": "Institut des Sciences de la Terre de Paris", - "type": "Child", - "id": "https://ror.org/00xagyq07" - }, - { - "label": "Institute of Environmental Geosciences", - "type": "Child", - "id": "https://ror.org/01wwcfa26" - }, - { - "label": "Interdisciplinary Laboratory for Continental Environments", - "type": "Child", - "id": "https://ror.org/05je79696" - }, - { - "label": "LIttoral, ENvironment and Societies", - "type": "Child", - "id": "https://ror.org/00r8amq78" - }, - { - "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", - "type": "Child", - "id": "https://ror.org/046cjf283" - }, - { - "label": "Laboratoire Magmas et Volcans", - "type": "Child", - "id": "https://ror.org/02vnq7240" - }, - { - "label": "Laboratoire Sciences de l'Univers au Cerfacs", - "type": "Child", - "id": "https://ror.org/03ck9wz82" - }, - { - "label": "Laboratoire d'Aérologie", - "type": "Child", - "id": "https://ror.org/017d9yp59" - }, - { - "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", - "type": "Child", - "id": "https://ror.org/05j3atf73" - }, - { - "label": "Laboratoire d'Optique Atmosphérique", - "type": "Child", - "id": "https://ror.org/02mdnkg28" - }, - { - "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", - "type": "Child", - "id": "https://ror.org/03fgt5a62" - }, - { - "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", - "type": "Child", - "id": "https://ror.org/04t89f389" - }, - { - "label": "Laboratoire de Géologie de l’École Normale Supérieure", - "type": "Child", - "id": "https://ror.org/05vg9cw43" - }, - { - "label": "Laboratoire de Météorologie Dynamique", - "type": "Child", - "id": "https://ror.org/000ehr937" - }, - { - "label": "Laboratoire de Météorologie Physique", - "type": "Child", - "id": "https://ror.org/03gz4y884" - }, - { - "label": "Laboratoire de Planétologie et Géodynamique de Nantes", - "type": "Child", - "id": "https://ror.org/04fm0sh33" - }, - { - "label": "Laboratoire de l'Atmosphère et des Cyclones", - "type": "Child", - "id": "https://ror.org/03wsemq03" - }, - { - "label": "Laboratoire des Sciences du Climat et de l'Environnement", - "type": "Child", - "id": "https://ror.org/03dsd0g48" - }, - { - "label": "Laboratoire d’Astrophysique de Marseille", - "type": "Child", - "id": "https://ror.org/00ssy9q55" - }, - { - "label": "Laboratoire d’Océanologie et de Géosciences", - "type": "Child", - "id": "https://ror.org/05m14rs93" - }, - { - "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", - "type": "Child", - "id": "https://ror.org/02chvqy57" - }, - { - "label": "Laboratory HydroSciences Montpellier", - "type": "Child", - "id": "https://ror.org/00aycez97" - }, - { - "label": "Laboratory Universe and Theories", - "type": "Child", - "id": "https://ror.org/00bbtde36" - }, - { - "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", - "type": "Child", - "id": "https://ror.org/03rtw5049" - }, - { - "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", - "type": "Child", - "id": "https://ror.org/01g5pq328" - }, - { - "label": "Laboratory of Astrophysics of Bordeaux", - "type": "Child", - "id": "https://ror.org/00yee3n23" - }, - { - "label": "Laboratory of Microbial Oceanography", - "type": "Child", - "id": "https://ror.org/05nk54s89" - }, - { - "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", - "type": "Child", - "id": "https://ror.org/02eptjh02" - }, - { - "label": "Laboratory of Subatomic Physics and Cosmology", - "type": "Child", - "id": "https://ror.org/03f0apy98" - }, - { - "label": "Lagrange Laboratory", - "type": "Child", - "id": "https://ror.org/02fdv8735" - }, - { - "label": "Observatoire Aquitain des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/03qma7a12" - }, - { - "label": "Observatoire Océanologique de Banyuls-sur-Mer", - "type": "Child", - "id": "https://ror.org/05gz4kr37" - }, - { - "label": "Observatoire des Sciences de l'Univers de la Réunion", - "type": "Child", - "id": "https://ror.org/05mv3tj33" - }, - { - "label": "Observatoires des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/040bzgy82" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Research Institute in Astrophysics and Planetology", - "type": "Child", - "id": "https://ror.org/05hm2ja81" - }, - { - "label": "Sytèmes de Référence Temps Espace", - "type": "Child", - "id": "https://ror.org/03tdef037" - }, - { - "label": "Villefranche Oceanographic Laboratory", - "type": "Child", - "id": "https://ror.org/05r5y6641" - } - ], - "addresses": [ - { - "lat": 48.79395, - "lng": 2.49323, - "state": null, - "state_code": null, - "city": "Saint-Maur-des-Fossés", - "geonames_city": { - "id": 2978179, - "city": "Saint-Maur-des-Fossés", - "geonames_admin1": { - "name": "Île-de-France", - "id": 3012874, - "ascii_name": "Île-de-France", - "code": "FR.11" - }, - "geonames_admin2": { - "name": "Val-de-Marne", - "id": 2971090, - "ascii_name": "Val-de-Marne", - "code": "FR.11.94" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.insu.cnrs.fr/en" - ], - "aliases": [], - "acronyms": [ - "INSU" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2154 1736" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100004617" - ] - }, - "GRID": { - "preferred": "grid.452348.c", - "all": "grid.452348.c" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json deleted file mode 100644 index 307a9cdb7..000000000 --- a/status-test/updates/04mczx267.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "id": "https://ror.org/04mczx267", - "name": "National Academy of Sciences of Armenia", - "email_address": "", - "ip_addresses": [], - "established": 1943, - "types": [ - "Government" - ], - "relationships": [ - { - "label": "Byurakan Astrophysical Observatory", - "type": "Child", - "id": "https://ror.org/0010mjy66" - }, - { - "label": "H.Buniatian Institute of Biochemistry", - "type": "Child", - "id": "https://ror.org/01gpc1r56" - }, - { - "label": "Institute for Informatics and Automation Problems", - "type": "Child", - "id": "https://ror.org/04a8k4p47" - }, - { - "label": "Institute for Physical Research", - "type": "Child", - "id": "https://ror.org/0187pag34" - }, - { - "label": "Institute of Archaeology and Ethnography", - "type": "Child", - "id": "https://ror.org/02af4h206" - }, - { - "label": "Institute of Botany", - "type": "Child", - "id": "https://ror.org/05mpgew40" - }, - { - "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", - "type": "Child", - "id": "https://ror.org/00588h422" - }, - { - "label": "Institute of Geological Sciences", - "type": "Child", - "id": "https://ror.org/03r6rhw30" - }, - { - "label": "Institute of Molecular Biology", - "type": "Child", - "id": "https://ror.org/03t8mqd25" - }, - { - "label": "Institute of Philosophy, Sociology and Law", - "type": "Child", - "id": "https://ror.org/02b7e7p97" - }, - { - "label": "Institute of Radiophysics and Electronics", - "type": "Child", - "id": "https://ror.org/051jgxz75" - }, - { - "label": "L. A. Orbeli Institute of Physiology NAS RA", - "type": "Child", - "id": "https://ror.org/02gse4n09" - }, - { - "label": "Scientific Center of Zoology and Hydroecology", - "type": "Child", - "id": "https://ror.org/00t5ymp38" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.sci.am/" - ], - "aliases": [ - "Armenian National Academy of Sciences" - ], - "acronyms": [ - "NAS RA" - ], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", - "labels": [ - { - "label": "Հայաստանի գիտությունների ազգային ակադեմիա", - "iso639": "hy" - } - ], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 1146 7878" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100008721" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "3712844" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2379496" - ] - }, - "GRID": { - "preferred": "grid.418094.0", - "all": "grid.418094.0" - } - } -} \ No newline at end of file diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json deleted file mode 100644 index 6a2fd873a..000000000 --- a/status-test/updates/0530qwm02.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "id": "https://ror.org/0530qwm02", - "name": "Earth and Environment Institute of Strasbourg", - "email_address": null, - "ip_addresses": [], - "established": 2021, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of Strasbourg", - "type": "Parent", - "id": "https://ror.org/00pg6eq24" - }, - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "National School for Water and Environmental Engineering", - "type": "Parent", - "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "https://ites.unistra.fr/" - ], - "aliases": [], - "acronyms": [ - "ITES" - ], - "status": "active", - "wikipedia_url": null, - "labels": [ - { - "label": "Institut Terre et Environnement de Strasbourg", - "iso639": "fr" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": {} -} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 15d58cde0..965c400fa 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Union Against Tuberculosis and Lung Disease", - "type": "Successor", - "id": "https://ror.org/037x4qk98" - } - ], + "relationships": [], "addresses": [ { "lat": 40.71427, From 846ea19904c60f355573decd4c8edda6fb404678 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 14:26:51 +0000 Subject: [PATCH 31/49] Apply relationship changes to files --- status-test/new/04kjrxx07.json | 8 ++- status-test/new/051dbx029.json | 8 ++- status-test/updates/01br3aa17.json | 5 ++ status-test/updates/020rbyg91.json | 106 +++++++++++++++++++++++++++++ status-test/updates/02yqgb753.json | 91 +++++++++++++++++++++++++ status-test/updates/02zbz4g27.json | 8 ++- status-test/updates/03t0t6y08.json | 99 +++++++++++++++++++++++++++ status-test/updates/03y81da23.json | 5 ++ status-test/updates/03ybx0x41.json | 2 +- status-test/updates/0530qwm02.json | 97 ++++++++++++++++++++++++++ status-test/updates/05s7dz794.json | 8 ++- 11 files changed, 432 insertions(+), 5 deletions(-) create mode 100644 status-test/updates/020rbyg91.json create mode 100644 status-test/updates/02yqgb753.json create mode 100644 status-test/updates/03t0t6y08.json create mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b3efb5ff6..b4361343d 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,7 +26,13 @@ } }, "established": 1965, - "relationships": [], + "relationships": [ + { + "label": "University of California Division of Agriculture and Natural Resources", + "type": "Parent", + "id": "https://ror.org/03t0t6y08" + } + ], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index 4006fff10..d86a54e01 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,7 +21,13 @@ } }, "established": null, - "relationships": [], + "relationships": [ + { + "label": "National Institutes for Quantum and Radiological Science and Technology", + "type": "Parent", + "id": "https://ror.org/020rbyg91" + } + ], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 0bfd78b8b..3a2412e95 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,6 +12,11 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" + }, + { + "label": "Life Sciences International Postgraduate Educational Center", + "type": "Successor", + "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json new file mode 100644 index 000000000..ed3994f21 --- /dev/null +++ b/status-test/updates/020rbyg91.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/020rbyg91", + "name": "National Institutes for Quantum and Radiological Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kansai Photon Science Institute", + "type": "Child", + "id": "https://ror.org/051dbx029" + } + ], + "addresses": [ + { + "lat": 35.6, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Chiba", + "geonames_city": { + "id": 2113015, + "city": "Chiba", + "geonames_admin1": { + "name": "Chiba", + "id": 2113014, + "ascii_name": "Chiba", + "code": "JP.04" + }, + "geonames_admin2": { + "name": "Chiba-shi", + "id": 2113012, + "ascii_name": "Chiba-shi", + "code": "JP.04.2113012" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.qst.go.jp" + ], + "aliases": [], + "acronyms": [ + "QST" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "量子科学技術研究開発機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5900 003X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006327" + ] + }, + "Wikidata": { + "preferred": "Q24067079", + "all": [ + "Q24067079", + "Q39022389" + ] + }, + "GRID": { + "preferred": "grid.482503.8", + "all": "grid.482503.8" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json new file mode 100644 index 000000000..f7bd3c951 --- /dev/null +++ b/status-test/updates/02yqgb753.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yqgb753", + "name": "Life Sciences International Postgraduate Educational Center", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United Nations Educational, Scientific and Cultural Organization", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.biophys.am/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q77077134" + ] + }, + "GRID": { + "preferred": "grid.506497.9", + "all": "grid.506497.9" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index 74ac37638..d19ba3249 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Federation of Library Associations and Institutions", + "type": "Successor", + "id": "https://ror.org/026gatw61" + } + ], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json new file mode 100644 index 000000000..2dfb32e6c --- /dev/null +++ b/status-test/updates/03t0t6y08.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03t0t6y08", + "name": "University of California Division of Agriculture and Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Kearney Agricultural Research and Extension Center", + "type": "Child", + "id": "https://ror.org/04kjrxx07" + } + ], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://ucanr.edu/" + ], + "aliases": [], + "acronyms": [ + "ANR" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2166 8120" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006488" + ] + }, + "GRID": { + "preferred": "grid.300433.7", + "all": "grid.300433.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index b8260e9dc..f107f772a 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,6 +22,11 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Successor", + "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index 3d71fdc7d..e3cc32031 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Parent", + "type": "Successor", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json new file mode 100644 index 000000000..6a2fd873a --- /dev/null +++ b/status-test/updates/0530qwm02.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0530qwm02", + "name": "Earth and Environment Institute of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ites.unistra.fr/" + ], + "aliases": [], + "acronyms": [ + "ITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Terre et Environnement de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 965c400fa..15d58cde0 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Union Against Tuberculosis and Lung Disease", + "type": "Successor", + "id": "https://ror.org/037x4qk98" + } + ], "addresses": [ { "lat": 40.71427, From adf0d1915bbec68e0ecb9934795d277163210060 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 14:28:08 +0000 Subject: [PATCH 32/49] Apply relationship changes to files --- status-test/updates/00pg6eq24.json | 313 +++++++++++++++++++++++ status-test/updates/02jhjzd11.json | 88 +++++++ status-test/updates/02nhqek82.json | 107 ++++++++ status-test/updates/02s6k3f65.json | 144 +++++++++++ status-test/updates/04k51q396.json | 107 ++++++++ status-test/updates/04kdfz702.json | 394 +++++++++++++++++++++++++++++ status-test/updates/04mczx267.json | 173 +++++++++++++ 7 files changed, 1326 insertions(+) create mode 100644 status-test/updates/00pg6eq24.json create mode 100644 status-test/updates/02jhjzd11.json create mode 100644 status-test/updates/02nhqek82.json create mode 100644 status-test/updates/02s6k3f65.json create mode 100644 status-test/updates/04k51q396.json create mode 100644 status-test/updates/04kdfz702.json create mode 100644 status-test/updates/04mczx267.json diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json new file mode 100644 index 000000000..8ecaea004 --- /dev/null +++ b/status-test/updates/00pg6eq24.json @@ -0,0 +1,313 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": "", + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", + "type": "Related", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Immune Response and Development in Insects", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/01epym565" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Biophotonics and Pharmacology", + "type": "Child", + "id": "https://ror.org/0032sc770" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "type": "Child", + "id": "https://ror.org/057916623" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Regenerative NanoMedicine", + "type": "Child", + "id": "https://ror.org/0032jvj22" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.en.unistra.fr/index.php?id=21707" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Université de Strasbourg", + "iso639": "fr" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2157 9291" + ] + }, + "FundRef": { + "preferred": "501100003768", + "all": [ + "501100003768", + "501100003998" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "722824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q157575" + ] + }, + "GRID": { + "preferred": "grid.11843.3f", + "all": "grid.11843.3f" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json new file mode 100644 index 000000000..30fb80bb8 --- /dev/null +++ b/status-test/updates/02jhjzd11.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02jhjzd11", + "name": "National School for Water and Environmental Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://engees.unistra.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ENGEES" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8652 7065" + ] + }, + "GRID": { + "preferred": "grid.466385.a", + "all": "grid.466385.a" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json new file mode 100644 index 000000000..f7b07f238 --- /dev/null +++ b/status-test/updates/02nhqek82.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02nhqek82", + "name": "University Children’s Hospital Basel", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.ukbb.ch/" + ], + "aliases": [], + "acronyms": [ + "UKBB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", + "labels": [ + { + "label": "Universitäts-Kinderspital beider Basel", + "iso639": "de" + }, + { + "label": "Hôpital universitaire pédiatrique des deux Bâle", + "iso639": "fr" + }, + { + "label": "University Children’s Hospital Basel", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0509 0981" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2496240" + ] + }, + "GRID": { + "preferred": "grid.412347.7", + "all": "grid.412347.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json new file mode 100644 index 000000000..3a6582644 --- /dev/null +++ b/status-test/updates/02s6k3f65.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/02s6k3f65", + "name": "University of Basel", + "email_address": "", + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Friedrich Miescher Institute", + "type": "Related", + "id": "https://ror.org/01bmjkv45" + }, + { + "label": "Swiss Tropical and Public Health Institute", + "type": "Related", + "id": "https://ror.org/03adhka07" + }, + { + "label": "University Children’s Hospital Basel", + "type": "Related", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Related", + "id": "https://ror.org/04k51q396" + }, + { + "label": "Universitäre Psychiatrische Kliniken Basel", + "type": "Related", + "id": "https://ror.org/05fw3jg78" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unibas.ch/de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", + "labels": [ + { + "label": "Universität Basel", + "iso639": "de" + }, + { + "label": "Université de Bâle", + "iso639": "fr" + }, + { + "label": "Università di Basilea", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0642" + ] + }, + "FundRef": { + "preferred": "100008375", + "all": [ + "100008375", + "501100008595", + "100008550" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "427614" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q372608" + ] + }, + "GRID": { + "preferred": "grid.6612.3", + "all": "grid.6612.3" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json new file mode 100644 index 000000000..6640f0adb --- /dev/null +++ b/status-test/updates/04k51q396.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04k51q396", + "name": "University Hospital of Basel", + "email_address": null, + "ip_addresses": [], + "established": 1083, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unispital-basel.ch/" + ], + "aliases": [], + "acronyms": [ + "USB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", + "labels": [ + { + "label": "Universitätsspital Basel", + "iso639": "de" + }, + { + "label": "University Hospital of Basel", + "iso639": "en" + }, + { + "label": "Hôpital universitaire de Bâle", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "40190980" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1689257" + ] + }, + "GRID": { + "preferred": "grid.410567.1", + "all": "grid.410567.1" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json new file mode 100644 index 000000000..7cc54310c --- /dev/null +++ b/status-test/updates/04kdfz702.json @@ -0,0 +1,394 @@ +{ + "id": "https://ror.org/04kdfz702", + "name": "Institut National des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Besançon Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/032582s48" + }, + { + "label": "Centre National de Recherches Météorologiques", + "type": "Child", + "id": "https://ror.org/004rej139" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Centre for Research and Teaching in Environmental Geoscience", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "GeoAzur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Geosciences Paris Sud", + "type": "Child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Haute-Provence Observatory", + "type": "Child", + "id": "https://ror.org/01gtjxz83" + }, + { + "label": "Institut UTINAM", + "type": "Child", + "id": "https://ror.org/02h0g9r59" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Child", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Interdisciplinary Laboratory for Continental Environments", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Sciences de l'Univers au Cerfacs", + "type": "Child", + "id": "https://ror.org/03ck9wz82" + }, + { + "label": "Laboratoire d'Aérologie", + "type": "Child", + "id": "https://ror.org/017d9yp59" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", + "type": "Child", + "id": "https://ror.org/03fgt5a62" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Laboratoire de Planétologie et Géodynamique de Nantes", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire de l'Atmosphère et des Cyclones", + "type": "Child", + "id": "https://ror.org/03wsemq03" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory Universe and Theories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "Child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratory of Microbial Oceanography", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Observatoires des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/040bzgy82" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Research Institute in Astrophysics and Planetology", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "Sytèmes de Référence Temps Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Villefranche Oceanographic Laboratory", + "type": "Child", + "id": "https://ror.org/05r5y6641" + } + ], + "addresses": [ + { + "lat": 48.79395, + "lng": 2.49323, + "state": null, + "state_code": null, + "city": "Saint-Maur-des-Fossés", + "geonames_city": { + "id": 2978179, + "city": "Saint-Maur-des-Fossés", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.insu.cnrs.fr/en" + ], + "aliases": [], + "acronyms": [ + "INSU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2154 1736" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004617" + ] + }, + "GRID": { + "preferred": "grid.452348.c", + "all": "grid.452348.c" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json new file mode 100644 index 000000000..307a9cdb7 --- /dev/null +++ b/status-test/updates/04mczx267.json @@ -0,0 +1,173 @@ +{ + "id": "https://ror.org/04mczx267", + "name": "National Academy of Sciences of Armenia", + "email_address": "", + "ip_addresses": [], + "established": 1943, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Byurakan Astrophysical Observatory", + "type": "Child", + "id": "https://ror.org/0010mjy66" + }, + { + "label": "H.Buniatian Institute of Biochemistry", + "type": "Child", + "id": "https://ror.org/01gpc1r56" + }, + { + "label": "Institute for Informatics and Automation Problems", + "type": "Child", + "id": "https://ror.org/04a8k4p47" + }, + { + "label": "Institute for Physical Research", + "type": "Child", + "id": "https://ror.org/0187pag34" + }, + { + "label": "Institute of Archaeology and Ethnography", + "type": "Child", + "id": "https://ror.org/02af4h206" + }, + { + "label": "Institute of Botany", + "type": "Child", + "id": "https://ror.org/05mpgew40" + }, + { + "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", + "type": "Child", + "id": "https://ror.org/00588h422" + }, + { + "label": "Institute of Geological Sciences", + "type": "Child", + "id": "https://ror.org/03r6rhw30" + }, + { + "label": "Institute of Molecular Biology", + "type": "Child", + "id": "https://ror.org/03t8mqd25" + }, + { + "label": "Institute of Philosophy, Sociology and Law", + "type": "Child", + "id": "https://ror.org/02b7e7p97" + }, + { + "label": "Institute of Radiophysics and Electronics", + "type": "Child", + "id": "https://ror.org/051jgxz75" + }, + { + "label": "L. A. Orbeli Institute of Physiology NAS RA", + "type": "Child", + "id": "https://ror.org/02gse4n09" + }, + { + "label": "Scientific Center of Zoology and Hydroecology", + "type": "Child", + "id": "https://ror.org/00t5ymp38" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.sci.am/" + ], + "aliases": [ + "Armenian National Academy of Sciences" + ], + "acronyms": [ + "NAS RA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", + "labels": [ + { + "label": "Հայաստանի գիտությունների ազգային ակադեմիա", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1146 7878" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008721" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3712844" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2379496" + ] + }, + "GRID": { + "preferred": "grid.418094.0", + "all": "grid.418094.0" + } + } +} \ No newline at end of file From 9bfe4a45163d2b180a6a6f8e5548b60fc346c047 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 09:37:01 -0500 Subject: [PATCH 33/49] reset status-test files --- status-test/new/04kjrxx07.json | 8 +- status-test/new/051dbx029.json | 8 +- status-test/updates/00pg6eq24.json | 313 ----------------------- status-test/updates/01br3aa17.json | 5 - status-test/updates/020rbyg91.json | 106 -------- status-test/updates/02jhjzd11.json | 88 ------- status-test/updates/02nhqek82.json | 107 -------- status-test/updates/02s6k3f65.json | 144 ----------- status-test/updates/02yqgb753.json | 91 ------- status-test/updates/02zbz4g27.json | 8 +- status-test/updates/03t0t6y08.json | 99 -------- status-test/updates/03y81da23.json | 5 - status-test/updates/03ybx0x41.json | 2 +- status-test/updates/04k51q396.json | 107 -------- status-test/updates/04kdfz702.json | 394 ----------------------------- status-test/updates/04mczx267.json | 173 ------------- status-test/updates/0530qwm02.json | 97 ------- status-test/updates/05s7dz794.json | 8 +- 18 files changed, 5 insertions(+), 1758 deletions(-) delete mode 100644 status-test/updates/00pg6eq24.json delete mode 100644 status-test/updates/020rbyg91.json delete mode 100644 status-test/updates/02jhjzd11.json delete mode 100644 status-test/updates/02nhqek82.json delete mode 100644 status-test/updates/02s6k3f65.json delete mode 100644 status-test/updates/02yqgb753.json delete mode 100644 status-test/updates/03t0t6y08.json delete mode 100644 status-test/updates/04k51q396.json delete mode 100644 status-test/updates/04kdfz702.json delete mode 100644 status-test/updates/04mczx267.json delete mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b4361343d..b3efb5ff6 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,13 +26,7 @@ } }, "established": 1965, - "relationships": [ - { - "label": "University of California Division of Agriculture and Natural Resources", - "type": "Parent", - "id": "https://ror.org/03t0t6y08" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index d86a54e01..4006fff10 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,13 +21,7 @@ } }, "established": null, - "relationships": [ - { - "label": "National Institutes for Quantum and Radiological Science and Technology", - "type": "Parent", - "id": "https://ror.org/020rbyg91" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json deleted file mode 100644 index 8ecaea004..000000000 --- a/status-test/updates/00pg6eq24.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "id": "https://ror.org/00pg6eq24", - "name": "University of Strasbourg", - "email_address": "", - "ip_addresses": [], - "established": 1538, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", - "type": "Related", - "id": "https://ror.org/02zwf7d57" - }, - { - "label": "Hôpitaux Universitaires de Strasbourg", - "type": "Related", - "id": "https://ror.org/04bckew43" - }, - { - "label": "Architecture et Réactivité de l'arN", - "type": "Child", - "id": "https://ror.org/03xmjtz19" - }, - { - "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", - "type": "Child", - "id": "https://ror.org/007xqmx73" - }, - { - "label": "Biomatériaux et Bioingénierie", - "type": "Child", - "id": "https://ror.org/05vcax154" - }, - { - "label": "Biotechnologie et Signalisation Cellulaire", - "type": "Child", - "id": "https://ror.org/047fwb937" - }, - { - "label": "Bureau for Economic Theory and Applications", - "type": "Child", - "id": "https://ror.org/05em8ne27" - }, - { - "label": "Fédération de Recherche PhotoVoltaïque", - "type": "Child", - "id": "https://ror.org/059fn5f50" - }, - { - "label": "Grapevine Health and Wine Quality", - "type": "Child", - "id": "https://ror.org/0291jbz11" - }, - { - "label": "Génétique Moléculaire Génomique Microbiologie", - "type": "Child", - "id": "https://ror.org/05n4nmn13" - }, - { - "label": "Hubert Curien Pluridisciplinary Institute", - "type": "Child", - "id": "https://ror.org/01g3mb532" - }, - { - "label": "Immune Response and Development in Insects", - "type": "Child", - "id": "https://ror.org/030przz70" - }, - { - "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", - "type": "Child", - "id": "https://ror.org/041v2hk34" - }, - { - "label": "Institut Charles Sadron", - "type": "Child", - "id": "https://ror.org/05whrjc31" - }, - { - "label": "Institut de Biologie Moléculaire des Plantes", - "type": "Child", - "id": "https://ror.org/01jm8fn98" - }, - { - "label": "Institut de Chimie de Strasbourg", - "type": "Child", - "id": "https://ror.org/00se7bf12" - }, - { - "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", - "type": "Child", - "id": "https://ror.org/02za18p66" - }, - { - "label": "Institut de Recherche Mathématique Avancée", - "type": "Child", - "id": "https://ror.org/02hwgty18" - }, - { - "label": "Institut de Science et d'Ingénierie Supramoléculaires", - "type": "Child", - "id": "https://ror.org/00xts7d02" - }, - { - "label": "Institute for Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/05qpmg879" - }, - { - "label": "Institute of Cellular and Integrative Neurosciences", - "type": "Child", - "id": "https://ror.org/025mhd687" - }, - { - "label": "Institute of Chemistry and Processes for Energy, Environment and Health", - "type": "Child", - "id": "https://ror.org/02tn0tm63" - }, - { - "label": "Institute of Genetics and Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/0015ws592" - }, - { - "label": "Laboratoire Image, Ville, Environnement", - "type": "Child", - "id": "https://ror.org/03x8fem72" - }, - { - "label": "Laboratoire de Chimie Moléculaire", - "type": "Child", - "id": "https://ror.org/01epym565" - }, - { - "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", - "type": "Child", - "id": "https://ror.org/01m71e459" - }, - { - "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", - "type": "Child", - "id": "https://ror.org/008pt4x48" - }, - { - "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", - "type": "Child", - "id": "https://ror.org/00k4e5n71" - }, - { - "label": "Laboratory for Therapeutic Innovation", - "type": "Child", - "id": "https://ror.org/02g4mxc89" - }, - { - "label": "Laboratory of Biophotonics and Pharmacology", - "type": "Child", - "id": "https://ror.org/0032sc770" - }, - { - "label": "Laboratory of Design and Application of Bioactive Molecules", - "type": "Child", - "id": "https://ror.org/00rh71z37" - }, - { - "label": "Laboratory of Molecular Anthropology and Image Synthesis", - "type": "Child", - "id": "https://ror.org/05w482q29" - }, - { - "label": "Maison Interuniversitaire des Sciences de l'Homme", - "type": "Child", - "id": "https://ror.org/02jm89840" - }, - { - "label": "Mitochondrie, stress oxydant et protection musculaire", - "type": "Child", - "id": "https://ror.org/05sc3hd12" - }, - { - "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", - "type": "Child", - "id": "https://ror.org/057916623" - }, - { - "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", - "type": "Child", - "id": "https://ror.org/00b4q1853" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Regenerative NanoMedicine", - "type": "Child", - "id": "https://ror.org/0032jvj22" - }, - { - "label": "Societies, Actors and Governement in Europe", - "type": "Child", - "id": "https://ror.org/00bhwwh42" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.en.unistra.fr/index.php?id=21707" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", - "labels": [ - { - "label": "Université de Strasbourg", - "iso639": "fr" - }, - { - "label": "Universität Straßburg", - "iso639": "de" - }, - { - "label": "Universitat d'Estrasburg", - "iso639": "ca" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2157 9291" - ] - }, - "FundRef": { - "preferred": "501100003768", - "all": [ - "501100003768", - "501100003998" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "722824" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q157575" - ] - }, - "GRID": { - "preferred": "grid.11843.3f", - "all": "grid.11843.3f" - } - } -} \ No newline at end of file diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 3a2412e95..0bfd78b8b 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,11 +12,6 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" - }, - { - "label": "Life Sciences International Postgraduate Educational Center", - "type": "Successor", - "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json deleted file mode 100644 index ed3994f21..000000000 --- a/status-test/updates/020rbyg91.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "id": "https://ror.org/020rbyg91", - "name": "National Institutes for Quantum and Radiological Science and Technology", - "email_address": null, - "ip_addresses": [], - "established": 2016, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "Kansai Photon Science Institute", - "type": "Child", - "id": "https://ror.org/051dbx029" - } - ], - "addresses": [ - { - "lat": 35.6, - "lng": 140.11667, - "state": null, - "state_code": null, - "city": "Chiba", - "geonames_city": { - "id": 2113015, - "city": "Chiba", - "geonames_admin1": { - "name": "Chiba", - "id": 2113014, - "ascii_name": "Chiba", - "code": "JP.04" - }, - "geonames_admin2": { - "name": "Chiba-shi", - "id": 2113012, - "ascii_name": "Chiba-shi", - "code": "JP.04.2113012" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 1861060 - } - ], - "links": [ - "https://www.qst.go.jp" - ], - "aliases": [], - "acronyms": [ - "QST" - ], - "status": "active", - "wikipedia_url": "", - "labels": [ - { - "label": "量子科学技術研究開発機構", - "iso639": "ja" - } - ], - "country": { - "country_name": "Japan", - "country_code": "JP" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 5900 003X" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100006327" - ] - }, - "Wikidata": { - "preferred": "Q24067079", - "all": [ - "Q24067079", - "Q39022389" - ] - }, - "GRID": { - "preferred": "grid.482503.8", - "all": "grid.482503.8" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json deleted file mode 100644 index 30fb80bb8..000000000 --- a/status-test/updates/02jhjzd11.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "id": "https://ror.org/02jhjzd11", - "name": "National School for Water and Environmental Engineering", - "email_address": null, - "ip_addresses": [], - "established": 1952, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://engees.unistra.fr/en/" - ], - "aliases": [], - "acronyms": [ - "ENGEES" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0000 8652 7065" - ] - }, - "GRID": { - "preferred": "grid.466385.a", - "all": "grid.466385.a" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json deleted file mode 100644 index f7b07f238..000000000 --- a/status-test/updates/02nhqek82.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/02nhqek82", - "name": "University Children’s Hospital Basel", - "email_address": null, - "ip_addresses": [], - "established": 1862, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.ukbb.ch/" - ], - "aliases": [], - "acronyms": [ - "UKBB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", - "labels": [ - { - "label": "Universitäts-Kinderspital beider Basel", - "iso639": "de" - }, - { - "label": "Hôpital universitaire pédiatrique des deux Bâle", - "iso639": "fr" - }, - { - "label": "University Children’s Hospital Basel", - "iso639": "en" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 0509 0981" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2496240" - ] - }, - "GRID": { - "preferred": "grid.412347.7", - "all": "grid.412347.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json deleted file mode 100644 index 3a6582644..000000000 --- a/status-test/updates/02s6k3f65.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "id": "https://ror.org/02s6k3f65", - "name": "University of Basel", - "email_address": "", - "ip_addresses": [], - "established": 1460, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Friedrich Miescher Institute", - "type": "Related", - "id": "https://ror.org/01bmjkv45" - }, - { - "label": "Swiss Tropical and Public Health Institute", - "type": "Related", - "id": "https://ror.org/03adhka07" - }, - { - "label": "University Children’s Hospital Basel", - "type": "Related", - "id": "https://ror.org/02nhqek82" - }, - { - "label": "University Hospital of Basel", - "type": "Related", - "id": "https://ror.org/04k51q396" - }, - { - "label": "Universitäre Psychiatrische Kliniken Basel", - "type": "Related", - "id": "https://ror.org/05fw3jg78" - }, - { - "label": "Swiss National Data and Service Center for the Humanities", - "type": "Related", - "id": "https://ror.org/047f01g80" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unibas.ch/de" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", - "labels": [ - { - "label": "Universität Basel", - "iso639": "de" - }, - { - "label": "Université de Bâle", - "iso639": "fr" - }, - { - "label": "Università di Basilea", - "iso639": "it" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 1937 0642" - ] - }, - "FundRef": { - "preferred": "100008375", - "all": [ - "100008375", - "501100008595", - "100008550" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "427614" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q372608" - ] - }, - "GRID": { - "preferred": "grid.6612.3", - "all": "grid.6612.3" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json deleted file mode 100644 index f7bd3c951..000000000 --- a/status-test/updates/02yqgb753.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "id": "https://ror.org/02yqgb753", - "name": "Life Sciences International Postgraduate Educational Center", - "email_address": null, - "ip_addresses": [], - "established": 1977, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "United Nations Educational, Scientific and Cultural Organization", - "type": "Parent", - "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.biophys.am/" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "Wikidata": { - "preferred": null, - "all": [ - "Q77077134" - ] - }, - "GRID": { - "preferred": "grid.506497.9", - "all": "grid.506497.9" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index d19ba3249..74ac37638 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Federation of Library Associations and Institutions", - "type": "Successor", - "id": "https://ror.org/026gatw61" - } - ], + "relationships": [], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json deleted file mode 100644 index 2dfb32e6c..000000000 --- a/status-test/updates/03t0t6y08.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "id": "https://ror.org/03t0t6y08", - "name": "University of California Division of Agriculture and Natural Resources", - "email_address": null, - "ip_addresses": [], - "established": 1913, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of California System", - "type": "Parent", - "id": "https://ror.org/00pjdza24" - }, - { - "label": "Kearney Agricultural Research and Extension Center", - "type": "Child", - "id": "https://ror.org/04kjrxx07" - } - ], - "addresses": [ - { - "lat": 37.80437, - "lng": -122.2708, - "state": null, - "state_code": null, - "city": "Oakland", - "geonames_city": { - "id": 5378538, - "city": "Oakland", - "geonames_admin1": { - "name": "California", - "id": 5332921, - "ascii_name": "California", - "code": "US.CA" - }, - "geonames_admin2": { - "name": "Alameda", - "id": 5322745, - "ascii_name": "Alameda", - "code": "US.CA.001" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 6252001 - } - ], - "links": [ - "http://ucanr.edu/" - ], - "aliases": [], - "acronyms": [ - "ANR" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "United States", - "country_code": "US" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2166 8120" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100006488" - ] - }, - "GRID": { - "preferred": "grid.300433.7", - "all": "grid.300433.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index f107f772a..b8260e9dc 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,11 +22,6 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Successor", - "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index e3cc32031..3d71fdc7d 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Successor", + "type": "Parent", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json deleted file mode 100644 index 6640f0adb..000000000 --- a/status-test/updates/04k51q396.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/04k51q396", - "name": "University Hospital of Basel", - "email_address": null, - "ip_addresses": [], - "established": 1083, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unispital-basel.ch/" - ], - "aliases": [], - "acronyms": [ - "USB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", - "labels": [ - { - "label": "Universitätsspital Basel", - "iso639": "de" - }, - { - "label": "University Hospital of Basel", - "iso639": "en" - }, - { - "label": "Hôpital universitaire de Bâle", - "iso639": "fr" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "OrgRef": { - "preferred": null, - "all": [ - "40190980" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q1689257" - ] - }, - "GRID": { - "preferred": "grid.410567.1", - "all": "grid.410567.1" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json deleted file mode 100644 index 7cc54310c..000000000 --- a/status-test/updates/04kdfz702.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "id": "https://ror.org/04kdfz702", - "name": "Institut National des Sciences de l'Univers", - "email_address": null, - "ip_addresses": [], - "established": 1985, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "Astrophysique, Instrumentation et Modélisation", - "type": "Child", - "id": "https://ror.org/0015h8611" - }, - { - "label": "Besançon Astronomical Observatory", - "type": "Child", - "id": "https://ror.org/032582s48" - }, - { - "label": "Centre National de Recherches Météorologiques", - "type": "Child", - "id": "https://ror.org/004rej139" - }, - { - "label": "Centre d'Études Spatiales de la Biosphère", - "type": "Child", - "id": "https://ror.org/01225hq90" - }, - { - "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", - "type": "Child", - "id": "https://ror.org/01jt5ms28" - }, - { - "label": "Centre de Recherches Pétrographiques et Géochimiques", - "type": "Child", - "id": "https://ror.org/011nqat45" - }, - { - "label": "Centre for Astronomical Reseach of Lyon", - "type": "Child", - "id": "https://ror.org/0084x3h80" - }, - { - "label": "Centre for Research and Teaching in Environmental Geoscience", - "type": "Child", - "id": "https://ror.org/01pa4h393" - }, - { - "label": "Division Technique de I'INSU", - "type": "Child", - "id": "https://ror.org/01s48fc08" - }, - { - "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", - "type": "Child", - "id": "https://ror.org/01tsa0x55" - }, - { - "label": "Galaxies, Etoiles, Physique et Instrumentation", - "type": "Child", - "id": "https://ror.org/01920cw75" - }, - { - "label": "GeoAzur", - "type": "Child", - "id": "https://ror.org/05xtktk35" - }, - { - "label": "Geosciences Paris Sud", - "type": "Child", - "id": "https://ror.org/03s92mv58" - }, - { - "label": "Géosciences Environnement Toulouse", - "type": "Child", - "id": "https://ror.org/05k0qmv73" - }, - { - "label": "Géosciences Montpellier", - "type": "Child", - "id": "https://ror.org/024gts110" - }, - { - "label": "Géosciences Rennes", - "type": "Child", - "id": "https://ror.org/00vn0zc62" - }, - { - "label": "Haute-Provence Observatory", - "type": "Child", - "id": "https://ror.org/01gtjxz83" - }, - { - "label": "Institut UTINAM", - "type": "Child", - "id": "https://ror.org/02h0g9r59" - }, - { - "label": "Institut d'Astrophysique de Paris", - "type": "Child", - "id": "https://ror.org/022bnxw24" - }, - { - "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", - "type": "Child", - "id": "https://ror.org/002zc3t08" - }, - { - "label": "Institut de physique du globe de Paris", - "type": "Child", - "id": "https://ror.org/004gzqz66" - }, - { - "label": "Institut des Sciences de la Terre", - "type": "Child", - "id": "https://ror.org/01cf2sz15" - }, - { - "label": "Institut des Sciences de la Terre de Paris", - "type": "Child", - "id": "https://ror.org/00xagyq07" - }, - { - "label": "Institute of Environmental Geosciences", - "type": "Child", - "id": "https://ror.org/01wwcfa26" - }, - { - "label": "Interdisciplinary Laboratory for Continental Environments", - "type": "Child", - "id": "https://ror.org/05je79696" - }, - { - "label": "LIttoral, ENvironment and Societies", - "type": "Child", - "id": "https://ror.org/00r8amq78" - }, - { - "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", - "type": "Child", - "id": "https://ror.org/046cjf283" - }, - { - "label": "Laboratoire Magmas et Volcans", - "type": "Child", - "id": "https://ror.org/02vnq7240" - }, - { - "label": "Laboratoire Sciences de l'Univers au Cerfacs", - "type": "Child", - "id": "https://ror.org/03ck9wz82" - }, - { - "label": "Laboratoire d'Aérologie", - "type": "Child", - "id": "https://ror.org/017d9yp59" - }, - { - "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", - "type": "Child", - "id": "https://ror.org/05j3atf73" - }, - { - "label": "Laboratoire d'Optique Atmosphérique", - "type": "Child", - "id": "https://ror.org/02mdnkg28" - }, - { - "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", - "type": "Child", - "id": "https://ror.org/03fgt5a62" - }, - { - "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", - "type": "Child", - "id": "https://ror.org/04t89f389" - }, - { - "label": "Laboratoire de Géologie de l’École Normale Supérieure", - "type": "Child", - "id": "https://ror.org/05vg9cw43" - }, - { - "label": "Laboratoire de Météorologie Dynamique", - "type": "Child", - "id": "https://ror.org/000ehr937" - }, - { - "label": "Laboratoire de Météorologie Physique", - "type": "Child", - "id": "https://ror.org/03gz4y884" - }, - { - "label": "Laboratoire de Planétologie et Géodynamique de Nantes", - "type": "Child", - "id": "https://ror.org/04fm0sh33" - }, - { - "label": "Laboratoire de l'Atmosphère et des Cyclones", - "type": "Child", - "id": "https://ror.org/03wsemq03" - }, - { - "label": "Laboratoire des Sciences du Climat et de l'Environnement", - "type": "Child", - "id": "https://ror.org/03dsd0g48" - }, - { - "label": "Laboratoire d’Astrophysique de Marseille", - "type": "Child", - "id": "https://ror.org/00ssy9q55" - }, - { - "label": "Laboratoire d’Océanologie et de Géosciences", - "type": "Child", - "id": "https://ror.org/05m14rs93" - }, - { - "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", - "type": "Child", - "id": "https://ror.org/02chvqy57" - }, - { - "label": "Laboratory HydroSciences Montpellier", - "type": "Child", - "id": "https://ror.org/00aycez97" - }, - { - "label": "Laboratory Universe and Theories", - "type": "Child", - "id": "https://ror.org/00bbtde36" - }, - { - "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", - "type": "Child", - "id": "https://ror.org/03rtw5049" - }, - { - "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", - "type": "Child", - "id": "https://ror.org/01g5pq328" - }, - { - "label": "Laboratory of Astrophysics of Bordeaux", - "type": "Child", - "id": "https://ror.org/00yee3n23" - }, - { - "label": "Laboratory of Microbial Oceanography", - "type": "Child", - "id": "https://ror.org/05nk54s89" - }, - { - "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", - "type": "Child", - "id": "https://ror.org/02eptjh02" - }, - { - "label": "Laboratory of Subatomic Physics and Cosmology", - "type": "Child", - "id": "https://ror.org/03f0apy98" - }, - { - "label": "Lagrange Laboratory", - "type": "Child", - "id": "https://ror.org/02fdv8735" - }, - { - "label": "Observatoire Aquitain des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/03qma7a12" - }, - { - "label": "Observatoire Océanologique de Banyuls-sur-Mer", - "type": "Child", - "id": "https://ror.org/05gz4kr37" - }, - { - "label": "Observatoire des Sciences de l'Univers de la Réunion", - "type": "Child", - "id": "https://ror.org/05mv3tj33" - }, - { - "label": "Observatoires des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/040bzgy82" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Research Institute in Astrophysics and Planetology", - "type": "Child", - "id": "https://ror.org/05hm2ja81" - }, - { - "label": "Sytèmes de Référence Temps Espace", - "type": "Child", - "id": "https://ror.org/03tdef037" - }, - { - "label": "Villefranche Oceanographic Laboratory", - "type": "Child", - "id": "https://ror.org/05r5y6641" - } - ], - "addresses": [ - { - "lat": 48.79395, - "lng": 2.49323, - "state": null, - "state_code": null, - "city": "Saint-Maur-des-Fossés", - "geonames_city": { - "id": 2978179, - "city": "Saint-Maur-des-Fossés", - "geonames_admin1": { - "name": "Île-de-France", - "id": 3012874, - "ascii_name": "Île-de-France", - "code": "FR.11" - }, - "geonames_admin2": { - "name": "Val-de-Marne", - "id": 2971090, - "ascii_name": "Val-de-Marne", - "code": "FR.11.94" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.insu.cnrs.fr/en" - ], - "aliases": [], - "acronyms": [ - "INSU" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2154 1736" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100004617" - ] - }, - "GRID": { - "preferred": "grid.452348.c", - "all": "grid.452348.c" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json deleted file mode 100644 index 307a9cdb7..000000000 --- a/status-test/updates/04mczx267.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "id": "https://ror.org/04mczx267", - "name": "National Academy of Sciences of Armenia", - "email_address": "", - "ip_addresses": [], - "established": 1943, - "types": [ - "Government" - ], - "relationships": [ - { - "label": "Byurakan Astrophysical Observatory", - "type": "Child", - "id": "https://ror.org/0010mjy66" - }, - { - "label": "H.Buniatian Institute of Biochemistry", - "type": "Child", - "id": "https://ror.org/01gpc1r56" - }, - { - "label": "Institute for Informatics and Automation Problems", - "type": "Child", - "id": "https://ror.org/04a8k4p47" - }, - { - "label": "Institute for Physical Research", - "type": "Child", - "id": "https://ror.org/0187pag34" - }, - { - "label": "Institute of Archaeology and Ethnography", - "type": "Child", - "id": "https://ror.org/02af4h206" - }, - { - "label": "Institute of Botany", - "type": "Child", - "id": "https://ror.org/05mpgew40" - }, - { - "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", - "type": "Child", - "id": "https://ror.org/00588h422" - }, - { - "label": "Institute of Geological Sciences", - "type": "Child", - "id": "https://ror.org/03r6rhw30" - }, - { - "label": "Institute of Molecular Biology", - "type": "Child", - "id": "https://ror.org/03t8mqd25" - }, - { - "label": "Institute of Philosophy, Sociology and Law", - "type": "Child", - "id": "https://ror.org/02b7e7p97" - }, - { - "label": "Institute of Radiophysics and Electronics", - "type": "Child", - "id": "https://ror.org/051jgxz75" - }, - { - "label": "L. A. Orbeli Institute of Physiology NAS RA", - "type": "Child", - "id": "https://ror.org/02gse4n09" - }, - { - "label": "Scientific Center of Zoology and Hydroecology", - "type": "Child", - "id": "https://ror.org/00t5ymp38" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.sci.am/" - ], - "aliases": [ - "Armenian National Academy of Sciences" - ], - "acronyms": [ - "NAS RA" - ], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", - "labels": [ - { - "label": "Հայաստանի գիտությունների ազգային ակադեմիա", - "iso639": "hy" - } - ], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 1146 7878" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100008721" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "3712844" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2379496" - ] - }, - "GRID": { - "preferred": "grid.418094.0", - "all": "grid.418094.0" - } - } -} \ No newline at end of file diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json deleted file mode 100644 index 6a2fd873a..000000000 --- a/status-test/updates/0530qwm02.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "id": "https://ror.org/0530qwm02", - "name": "Earth and Environment Institute of Strasbourg", - "email_address": null, - "ip_addresses": [], - "established": 2021, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of Strasbourg", - "type": "Parent", - "id": "https://ror.org/00pg6eq24" - }, - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "National School for Water and Environmental Engineering", - "type": "Parent", - "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "https://ites.unistra.fr/" - ], - "aliases": [], - "acronyms": [ - "ITES" - ], - "status": "active", - "wikipedia_url": null, - "labels": [ - { - "label": "Institut Terre et Environnement de Strasbourg", - "iso639": "fr" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": {} -} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 15d58cde0..965c400fa 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Union Against Tuberculosis and Lung Disease", - "type": "Successor", - "id": "https://ror.org/037x4qk98" - } - ], + "relationships": [], "addresses": [ { "lat": 40.71427, From 555abf8de02fdc91b9c972fc8c37b5faf4f7e4b4 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 14:39:43 +0000 Subject: [PATCH 34/49] Apply relationship changes to files --- status-test/new/04kjrxx07.json | 8 ++- status-test/new/051dbx029.json | 8 ++- status-test/updates/01br3aa17.json | 5 ++ status-test/updates/020rbyg91.json | 106 +++++++++++++++++++++++++++++ status-test/updates/02yqgb753.json | 91 +++++++++++++++++++++++++ status-test/updates/02zbz4g27.json | 8 ++- status-test/updates/03t0t6y08.json | 99 +++++++++++++++++++++++++++ status-test/updates/03y81da23.json | 5 ++ status-test/updates/03ybx0x41.json | 2 +- status-test/updates/0530qwm02.json | 97 ++++++++++++++++++++++++++ status-test/updates/05s7dz794.json | 8 ++- 11 files changed, 432 insertions(+), 5 deletions(-) create mode 100644 status-test/updates/020rbyg91.json create mode 100644 status-test/updates/02yqgb753.json create mode 100644 status-test/updates/03t0t6y08.json create mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b3efb5ff6..b4361343d 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,7 +26,13 @@ } }, "established": 1965, - "relationships": [], + "relationships": [ + { + "label": "University of California Division of Agriculture and Natural Resources", + "type": "Parent", + "id": "https://ror.org/03t0t6y08" + } + ], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index 4006fff10..d86a54e01 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,7 +21,13 @@ } }, "established": null, - "relationships": [], + "relationships": [ + { + "label": "National Institutes for Quantum and Radiological Science and Technology", + "type": "Parent", + "id": "https://ror.org/020rbyg91" + } + ], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 0bfd78b8b..3a2412e95 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,6 +12,11 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" + }, + { + "label": "Life Sciences International Postgraduate Educational Center", + "type": "Successor", + "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json new file mode 100644 index 000000000..ed3994f21 --- /dev/null +++ b/status-test/updates/020rbyg91.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/020rbyg91", + "name": "National Institutes for Quantum and Radiological Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kansai Photon Science Institute", + "type": "Child", + "id": "https://ror.org/051dbx029" + } + ], + "addresses": [ + { + "lat": 35.6, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Chiba", + "geonames_city": { + "id": 2113015, + "city": "Chiba", + "geonames_admin1": { + "name": "Chiba", + "id": 2113014, + "ascii_name": "Chiba", + "code": "JP.04" + }, + "geonames_admin2": { + "name": "Chiba-shi", + "id": 2113012, + "ascii_name": "Chiba-shi", + "code": "JP.04.2113012" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.qst.go.jp" + ], + "aliases": [], + "acronyms": [ + "QST" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "量子科学技術研究開発機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5900 003X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006327" + ] + }, + "Wikidata": { + "preferred": "Q24067079", + "all": [ + "Q24067079", + "Q39022389" + ] + }, + "GRID": { + "preferred": "grid.482503.8", + "all": "grid.482503.8" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json new file mode 100644 index 000000000..f7bd3c951 --- /dev/null +++ b/status-test/updates/02yqgb753.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yqgb753", + "name": "Life Sciences International Postgraduate Educational Center", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United Nations Educational, Scientific and Cultural Organization", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.biophys.am/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q77077134" + ] + }, + "GRID": { + "preferred": "grid.506497.9", + "all": "grid.506497.9" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index 74ac37638..d19ba3249 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Federation of Library Associations and Institutions", + "type": "Successor", + "id": "https://ror.org/026gatw61" + } + ], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json new file mode 100644 index 000000000..2dfb32e6c --- /dev/null +++ b/status-test/updates/03t0t6y08.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03t0t6y08", + "name": "University of California Division of Agriculture and Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Kearney Agricultural Research and Extension Center", + "type": "Child", + "id": "https://ror.org/04kjrxx07" + } + ], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://ucanr.edu/" + ], + "aliases": [], + "acronyms": [ + "ANR" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2166 8120" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006488" + ] + }, + "GRID": { + "preferred": "grid.300433.7", + "all": "grid.300433.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index b8260e9dc..f107f772a 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,6 +22,11 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Successor", + "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index 3d71fdc7d..e3cc32031 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Parent", + "type": "Successor", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json new file mode 100644 index 000000000..6a2fd873a --- /dev/null +++ b/status-test/updates/0530qwm02.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0530qwm02", + "name": "Earth and Environment Institute of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ites.unistra.fr/" + ], + "aliases": [], + "acronyms": [ + "ITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Terre et Environnement de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 965c400fa..15d58cde0 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Union Against Tuberculosis and Lung Disease", + "type": "Successor", + "id": "https://ror.org/037x4qk98" + } + ], "addresses": [ { "lat": 40.71427, From 442e85041b2f5217c8cb9e051b3d2e37e90c0534 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 14:40:44 +0000 Subject: [PATCH 35/49] Apply relationship changes to files --- status-test/updates/00pg6eq24.json | 313 +++++++++++++++++++++++ status-test/updates/02jhjzd11.json | 88 +++++++ status-test/updates/02nhqek82.json | 107 ++++++++ status-test/updates/02s6k3f65.json | 144 +++++++++++ status-test/updates/04k51q396.json | 107 ++++++++ status-test/updates/04kdfz702.json | 394 +++++++++++++++++++++++++++++ status-test/updates/04mczx267.json | 173 +++++++++++++ 7 files changed, 1326 insertions(+) create mode 100644 status-test/updates/00pg6eq24.json create mode 100644 status-test/updates/02jhjzd11.json create mode 100644 status-test/updates/02nhqek82.json create mode 100644 status-test/updates/02s6k3f65.json create mode 100644 status-test/updates/04k51q396.json create mode 100644 status-test/updates/04kdfz702.json create mode 100644 status-test/updates/04mczx267.json diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json new file mode 100644 index 000000000..8ecaea004 --- /dev/null +++ b/status-test/updates/00pg6eq24.json @@ -0,0 +1,313 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": "", + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", + "type": "Related", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Immune Response and Development in Insects", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/01epym565" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Biophotonics and Pharmacology", + "type": "Child", + "id": "https://ror.org/0032sc770" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "type": "Child", + "id": "https://ror.org/057916623" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Regenerative NanoMedicine", + "type": "Child", + "id": "https://ror.org/0032jvj22" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.en.unistra.fr/index.php?id=21707" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Université de Strasbourg", + "iso639": "fr" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2157 9291" + ] + }, + "FundRef": { + "preferred": "501100003768", + "all": [ + "501100003768", + "501100003998" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "722824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q157575" + ] + }, + "GRID": { + "preferred": "grid.11843.3f", + "all": "grid.11843.3f" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json new file mode 100644 index 000000000..30fb80bb8 --- /dev/null +++ b/status-test/updates/02jhjzd11.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02jhjzd11", + "name": "National School for Water and Environmental Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://engees.unistra.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ENGEES" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8652 7065" + ] + }, + "GRID": { + "preferred": "grid.466385.a", + "all": "grid.466385.a" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json new file mode 100644 index 000000000..f7b07f238 --- /dev/null +++ b/status-test/updates/02nhqek82.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02nhqek82", + "name": "University Children’s Hospital Basel", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.ukbb.ch/" + ], + "aliases": [], + "acronyms": [ + "UKBB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", + "labels": [ + { + "label": "Universitäts-Kinderspital beider Basel", + "iso639": "de" + }, + { + "label": "Hôpital universitaire pédiatrique des deux Bâle", + "iso639": "fr" + }, + { + "label": "University Children’s Hospital Basel", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0509 0981" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2496240" + ] + }, + "GRID": { + "preferred": "grid.412347.7", + "all": "grid.412347.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json new file mode 100644 index 000000000..3a6582644 --- /dev/null +++ b/status-test/updates/02s6k3f65.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/02s6k3f65", + "name": "University of Basel", + "email_address": "", + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Friedrich Miescher Institute", + "type": "Related", + "id": "https://ror.org/01bmjkv45" + }, + { + "label": "Swiss Tropical and Public Health Institute", + "type": "Related", + "id": "https://ror.org/03adhka07" + }, + { + "label": "University Children’s Hospital Basel", + "type": "Related", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Related", + "id": "https://ror.org/04k51q396" + }, + { + "label": "Universitäre Psychiatrische Kliniken Basel", + "type": "Related", + "id": "https://ror.org/05fw3jg78" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unibas.ch/de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", + "labels": [ + { + "label": "Universität Basel", + "iso639": "de" + }, + { + "label": "Université de Bâle", + "iso639": "fr" + }, + { + "label": "Università di Basilea", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0642" + ] + }, + "FundRef": { + "preferred": "100008375", + "all": [ + "100008375", + "501100008595", + "100008550" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "427614" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q372608" + ] + }, + "GRID": { + "preferred": "grid.6612.3", + "all": "grid.6612.3" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json new file mode 100644 index 000000000..6640f0adb --- /dev/null +++ b/status-test/updates/04k51q396.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04k51q396", + "name": "University Hospital of Basel", + "email_address": null, + "ip_addresses": [], + "established": 1083, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unispital-basel.ch/" + ], + "aliases": [], + "acronyms": [ + "USB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", + "labels": [ + { + "label": "Universitätsspital Basel", + "iso639": "de" + }, + { + "label": "University Hospital of Basel", + "iso639": "en" + }, + { + "label": "Hôpital universitaire de Bâle", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "40190980" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1689257" + ] + }, + "GRID": { + "preferred": "grid.410567.1", + "all": "grid.410567.1" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json new file mode 100644 index 000000000..7cc54310c --- /dev/null +++ b/status-test/updates/04kdfz702.json @@ -0,0 +1,394 @@ +{ + "id": "https://ror.org/04kdfz702", + "name": "Institut National des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Besançon Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/032582s48" + }, + { + "label": "Centre National de Recherches Météorologiques", + "type": "Child", + "id": "https://ror.org/004rej139" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Centre for Research and Teaching in Environmental Geoscience", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "GeoAzur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Geosciences Paris Sud", + "type": "Child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Haute-Provence Observatory", + "type": "Child", + "id": "https://ror.org/01gtjxz83" + }, + { + "label": "Institut UTINAM", + "type": "Child", + "id": "https://ror.org/02h0g9r59" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Child", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Interdisciplinary Laboratory for Continental Environments", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Sciences de l'Univers au Cerfacs", + "type": "Child", + "id": "https://ror.org/03ck9wz82" + }, + { + "label": "Laboratoire d'Aérologie", + "type": "Child", + "id": "https://ror.org/017d9yp59" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", + "type": "Child", + "id": "https://ror.org/03fgt5a62" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Laboratoire de Planétologie et Géodynamique de Nantes", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire de l'Atmosphère et des Cyclones", + "type": "Child", + "id": "https://ror.org/03wsemq03" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory Universe and Theories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "Child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratory of Microbial Oceanography", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Observatoires des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/040bzgy82" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Research Institute in Astrophysics and Planetology", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "Sytèmes de Référence Temps Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Villefranche Oceanographic Laboratory", + "type": "Child", + "id": "https://ror.org/05r5y6641" + } + ], + "addresses": [ + { + "lat": 48.79395, + "lng": 2.49323, + "state": null, + "state_code": null, + "city": "Saint-Maur-des-Fossés", + "geonames_city": { + "id": 2978179, + "city": "Saint-Maur-des-Fossés", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.insu.cnrs.fr/en" + ], + "aliases": [], + "acronyms": [ + "INSU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2154 1736" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004617" + ] + }, + "GRID": { + "preferred": "grid.452348.c", + "all": "grid.452348.c" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json new file mode 100644 index 000000000..307a9cdb7 --- /dev/null +++ b/status-test/updates/04mczx267.json @@ -0,0 +1,173 @@ +{ + "id": "https://ror.org/04mczx267", + "name": "National Academy of Sciences of Armenia", + "email_address": "", + "ip_addresses": [], + "established": 1943, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Byurakan Astrophysical Observatory", + "type": "Child", + "id": "https://ror.org/0010mjy66" + }, + { + "label": "H.Buniatian Institute of Biochemistry", + "type": "Child", + "id": "https://ror.org/01gpc1r56" + }, + { + "label": "Institute for Informatics and Automation Problems", + "type": "Child", + "id": "https://ror.org/04a8k4p47" + }, + { + "label": "Institute for Physical Research", + "type": "Child", + "id": "https://ror.org/0187pag34" + }, + { + "label": "Institute of Archaeology and Ethnography", + "type": "Child", + "id": "https://ror.org/02af4h206" + }, + { + "label": "Institute of Botany", + "type": "Child", + "id": "https://ror.org/05mpgew40" + }, + { + "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", + "type": "Child", + "id": "https://ror.org/00588h422" + }, + { + "label": "Institute of Geological Sciences", + "type": "Child", + "id": "https://ror.org/03r6rhw30" + }, + { + "label": "Institute of Molecular Biology", + "type": "Child", + "id": "https://ror.org/03t8mqd25" + }, + { + "label": "Institute of Philosophy, Sociology and Law", + "type": "Child", + "id": "https://ror.org/02b7e7p97" + }, + { + "label": "Institute of Radiophysics and Electronics", + "type": "Child", + "id": "https://ror.org/051jgxz75" + }, + { + "label": "L. A. Orbeli Institute of Physiology NAS RA", + "type": "Child", + "id": "https://ror.org/02gse4n09" + }, + { + "label": "Scientific Center of Zoology and Hydroecology", + "type": "Child", + "id": "https://ror.org/00t5ymp38" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.sci.am/" + ], + "aliases": [ + "Armenian National Academy of Sciences" + ], + "acronyms": [ + "NAS RA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", + "labels": [ + { + "label": "Հայաստանի գիտությունների ազգային ակադեմիա", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1146 7878" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008721" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3712844" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2379496" + ] + }, + "GRID": { + "preferred": "grid.418094.0", + "all": "grid.418094.0" + } + } +} \ No newline at end of file From 3bcfaea44d0fcc1aa44909e3d772d28006decb97 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 09:49:58 -0500 Subject: [PATCH 36/49] reset status-test files --- status-test/new/04kjrxx07.json | 8 +- status-test/new/051dbx029.json | 8 +- status-test/updates/00pg6eq24.json | 313 ----------------------- status-test/updates/01br3aa17.json | 5 - status-test/updates/020rbyg91.json | 106 -------- status-test/updates/02jhjzd11.json | 88 ------- status-test/updates/02nhqek82.json | 107 -------- status-test/updates/02s6k3f65.json | 144 ----------- status-test/updates/02yqgb753.json | 91 ------- status-test/updates/02zbz4g27.json | 8 +- status-test/updates/03t0t6y08.json | 99 -------- status-test/updates/03y81da23.json | 5 - status-test/updates/03ybx0x41.json | 2 +- status-test/updates/04k51q396.json | 107 -------- status-test/updates/04kdfz702.json | 394 ----------------------------- status-test/updates/04mczx267.json | 173 ------------- status-test/updates/0530qwm02.json | 97 ------- status-test/updates/05s7dz794.json | 8 +- 18 files changed, 5 insertions(+), 1758 deletions(-) delete mode 100644 status-test/updates/00pg6eq24.json delete mode 100644 status-test/updates/020rbyg91.json delete mode 100644 status-test/updates/02jhjzd11.json delete mode 100644 status-test/updates/02nhqek82.json delete mode 100644 status-test/updates/02s6k3f65.json delete mode 100644 status-test/updates/02yqgb753.json delete mode 100644 status-test/updates/03t0t6y08.json delete mode 100644 status-test/updates/04k51q396.json delete mode 100644 status-test/updates/04kdfz702.json delete mode 100644 status-test/updates/04mczx267.json delete mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b4361343d..b3efb5ff6 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,13 +26,7 @@ } }, "established": 1965, - "relationships": [ - { - "label": "University of California Division of Agriculture and Natural Resources", - "type": "Parent", - "id": "https://ror.org/03t0t6y08" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index d86a54e01..4006fff10 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,13 +21,7 @@ } }, "established": null, - "relationships": [ - { - "label": "National Institutes for Quantum and Radiological Science and Technology", - "type": "Parent", - "id": "https://ror.org/020rbyg91" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json deleted file mode 100644 index 8ecaea004..000000000 --- a/status-test/updates/00pg6eq24.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "id": "https://ror.org/00pg6eq24", - "name": "University of Strasbourg", - "email_address": "", - "ip_addresses": [], - "established": 1538, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", - "type": "Related", - "id": "https://ror.org/02zwf7d57" - }, - { - "label": "Hôpitaux Universitaires de Strasbourg", - "type": "Related", - "id": "https://ror.org/04bckew43" - }, - { - "label": "Architecture et Réactivité de l'arN", - "type": "Child", - "id": "https://ror.org/03xmjtz19" - }, - { - "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", - "type": "Child", - "id": "https://ror.org/007xqmx73" - }, - { - "label": "Biomatériaux et Bioingénierie", - "type": "Child", - "id": "https://ror.org/05vcax154" - }, - { - "label": "Biotechnologie et Signalisation Cellulaire", - "type": "Child", - "id": "https://ror.org/047fwb937" - }, - { - "label": "Bureau for Economic Theory and Applications", - "type": "Child", - "id": "https://ror.org/05em8ne27" - }, - { - "label": "Fédération de Recherche PhotoVoltaïque", - "type": "Child", - "id": "https://ror.org/059fn5f50" - }, - { - "label": "Grapevine Health and Wine Quality", - "type": "Child", - "id": "https://ror.org/0291jbz11" - }, - { - "label": "Génétique Moléculaire Génomique Microbiologie", - "type": "Child", - "id": "https://ror.org/05n4nmn13" - }, - { - "label": "Hubert Curien Pluridisciplinary Institute", - "type": "Child", - "id": "https://ror.org/01g3mb532" - }, - { - "label": "Immune Response and Development in Insects", - "type": "Child", - "id": "https://ror.org/030przz70" - }, - { - "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", - "type": "Child", - "id": "https://ror.org/041v2hk34" - }, - { - "label": "Institut Charles Sadron", - "type": "Child", - "id": "https://ror.org/05whrjc31" - }, - { - "label": "Institut de Biologie Moléculaire des Plantes", - "type": "Child", - "id": "https://ror.org/01jm8fn98" - }, - { - "label": "Institut de Chimie de Strasbourg", - "type": "Child", - "id": "https://ror.org/00se7bf12" - }, - { - "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", - "type": "Child", - "id": "https://ror.org/02za18p66" - }, - { - "label": "Institut de Recherche Mathématique Avancée", - "type": "Child", - "id": "https://ror.org/02hwgty18" - }, - { - "label": "Institut de Science et d'Ingénierie Supramoléculaires", - "type": "Child", - "id": "https://ror.org/00xts7d02" - }, - { - "label": "Institute for Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/05qpmg879" - }, - { - "label": "Institute of Cellular and Integrative Neurosciences", - "type": "Child", - "id": "https://ror.org/025mhd687" - }, - { - "label": "Institute of Chemistry and Processes for Energy, Environment and Health", - "type": "Child", - "id": "https://ror.org/02tn0tm63" - }, - { - "label": "Institute of Genetics and Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/0015ws592" - }, - { - "label": "Laboratoire Image, Ville, Environnement", - "type": "Child", - "id": "https://ror.org/03x8fem72" - }, - { - "label": "Laboratoire de Chimie Moléculaire", - "type": "Child", - "id": "https://ror.org/01epym565" - }, - { - "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", - "type": "Child", - "id": "https://ror.org/01m71e459" - }, - { - "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", - "type": "Child", - "id": "https://ror.org/008pt4x48" - }, - { - "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", - "type": "Child", - "id": "https://ror.org/00k4e5n71" - }, - { - "label": "Laboratory for Therapeutic Innovation", - "type": "Child", - "id": "https://ror.org/02g4mxc89" - }, - { - "label": "Laboratory of Biophotonics and Pharmacology", - "type": "Child", - "id": "https://ror.org/0032sc770" - }, - { - "label": "Laboratory of Design and Application of Bioactive Molecules", - "type": "Child", - "id": "https://ror.org/00rh71z37" - }, - { - "label": "Laboratory of Molecular Anthropology and Image Synthesis", - "type": "Child", - "id": "https://ror.org/05w482q29" - }, - { - "label": "Maison Interuniversitaire des Sciences de l'Homme", - "type": "Child", - "id": "https://ror.org/02jm89840" - }, - { - "label": "Mitochondrie, stress oxydant et protection musculaire", - "type": "Child", - "id": "https://ror.org/05sc3hd12" - }, - { - "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", - "type": "Child", - "id": "https://ror.org/057916623" - }, - { - "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", - "type": "Child", - "id": "https://ror.org/00b4q1853" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Regenerative NanoMedicine", - "type": "Child", - "id": "https://ror.org/0032jvj22" - }, - { - "label": "Societies, Actors and Governement in Europe", - "type": "Child", - "id": "https://ror.org/00bhwwh42" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.en.unistra.fr/index.php?id=21707" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", - "labels": [ - { - "label": "Université de Strasbourg", - "iso639": "fr" - }, - { - "label": "Universität Straßburg", - "iso639": "de" - }, - { - "label": "Universitat d'Estrasburg", - "iso639": "ca" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2157 9291" - ] - }, - "FundRef": { - "preferred": "501100003768", - "all": [ - "501100003768", - "501100003998" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "722824" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q157575" - ] - }, - "GRID": { - "preferred": "grid.11843.3f", - "all": "grid.11843.3f" - } - } -} \ No newline at end of file diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 3a2412e95..0bfd78b8b 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,11 +12,6 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" - }, - { - "label": "Life Sciences International Postgraduate Educational Center", - "type": "Successor", - "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json deleted file mode 100644 index ed3994f21..000000000 --- a/status-test/updates/020rbyg91.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "id": "https://ror.org/020rbyg91", - "name": "National Institutes for Quantum and Radiological Science and Technology", - "email_address": null, - "ip_addresses": [], - "established": 2016, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "Kansai Photon Science Institute", - "type": "Child", - "id": "https://ror.org/051dbx029" - } - ], - "addresses": [ - { - "lat": 35.6, - "lng": 140.11667, - "state": null, - "state_code": null, - "city": "Chiba", - "geonames_city": { - "id": 2113015, - "city": "Chiba", - "geonames_admin1": { - "name": "Chiba", - "id": 2113014, - "ascii_name": "Chiba", - "code": "JP.04" - }, - "geonames_admin2": { - "name": "Chiba-shi", - "id": 2113012, - "ascii_name": "Chiba-shi", - "code": "JP.04.2113012" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 1861060 - } - ], - "links": [ - "https://www.qst.go.jp" - ], - "aliases": [], - "acronyms": [ - "QST" - ], - "status": "active", - "wikipedia_url": "", - "labels": [ - { - "label": "量子科学技術研究開発機構", - "iso639": "ja" - } - ], - "country": { - "country_name": "Japan", - "country_code": "JP" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 5900 003X" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100006327" - ] - }, - "Wikidata": { - "preferred": "Q24067079", - "all": [ - "Q24067079", - "Q39022389" - ] - }, - "GRID": { - "preferred": "grid.482503.8", - "all": "grid.482503.8" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json deleted file mode 100644 index 30fb80bb8..000000000 --- a/status-test/updates/02jhjzd11.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "id": "https://ror.org/02jhjzd11", - "name": "National School for Water and Environmental Engineering", - "email_address": null, - "ip_addresses": [], - "established": 1952, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://engees.unistra.fr/en/" - ], - "aliases": [], - "acronyms": [ - "ENGEES" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0000 8652 7065" - ] - }, - "GRID": { - "preferred": "grid.466385.a", - "all": "grid.466385.a" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json deleted file mode 100644 index f7b07f238..000000000 --- a/status-test/updates/02nhqek82.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/02nhqek82", - "name": "University Children’s Hospital Basel", - "email_address": null, - "ip_addresses": [], - "established": 1862, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.ukbb.ch/" - ], - "aliases": [], - "acronyms": [ - "UKBB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", - "labels": [ - { - "label": "Universitäts-Kinderspital beider Basel", - "iso639": "de" - }, - { - "label": "Hôpital universitaire pédiatrique des deux Bâle", - "iso639": "fr" - }, - { - "label": "University Children’s Hospital Basel", - "iso639": "en" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 0509 0981" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2496240" - ] - }, - "GRID": { - "preferred": "grid.412347.7", - "all": "grid.412347.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json deleted file mode 100644 index 3a6582644..000000000 --- a/status-test/updates/02s6k3f65.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "id": "https://ror.org/02s6k3f65", - "name": "University of Basel", - "email_address": "", - "ip_addresses": [], - "established": 1460, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Friedrich Miescher Institute", - "type": "Related", - "id": "https://ror.org/01bmjkv45" - }, - { - "label": "Swiss Tropical and Public Health Institute", - "type": "Related", - "id": "https://ror.org/03adhka07" - }, - { - "label": "University Children’s Hospital Basel", - "type": "Related", - "id": "https://ror.org/02nhqek82" - }, - { - "label": "University Hospital of Basel", - "type": "Related", - "id": "https://ror.org/04k51q396" - }, - { - "label": "Universitäre Psychiatrische Kliniken Basel", - "type": "Related", - "id": "https://ror.org/05fw3jg78" - }, - { - "label": "Swiss National Data and Service Center for the Humanities", - "type": "Related", - "id": "https://ror.org/047f01g80" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unibas.ch/de" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", - "labels": [ - { - "label": "Universität Basel", - "iso639": "de" - }, - { - "label": "Université de Bâle", - "iso639": "fr" - }, - { - "label": "Università di Basilea", - "iso639": "it" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 1937 0642" - ] - }, - "FundRef": { - "preferred": "100008375", - "all": [ - "100008375", - "501100008595", - "100008550" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "427614" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q372608" - ] - }, - "GRID": { - "preferred": "grid.6612.3", - "all": "grid.6612.3" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json deleted file mode 100644 index f7bd3c951..000000000 --- a/status-test/updates/02yqgb753.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "id": "https://ror.org/02yqgb753", - "name": "Life Sciences International Postgraduate Educational Center", - "email_address": null, - "ip_addresses": [], - "established": 1977, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "United Nations Educational, Scientific and Cultural Organization", - "type": "Parent", - "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.biophys.am/" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "Wikidata": { - "preferred": null, - "all": [ - "Q77077134" - ] - }, - "GRID": { - "preferred": "grid.506497.9", - "all": "grid.506497.9" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index d19ba3249..74ac37638 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Federation of Library Associations and Institutions", - "type": "Successor", - "id": "https://ror.org/026gatw61" - } - ], + "relationships": [], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json deleted file mode 100644 index 2dfb32e6c..000000000 --- a/status-test/updates/03t0t6y08.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "id": "https://ror.org/03t0t6y08", - "name": "University of California Division of Agriculture and Natural Resources", - "email_address": null, - "ip_addresses": [], - "established": 1913, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of California System", - "type": "Parent", - "id": "https://ror.org/00pjdza24" - }, - { - "label": "Kearney Agricultural Research and Extension Center", - "type": "Child", - "id": "https://ror.org/04kjrxx07" - } - ], - "addresses": [ - { - "lat": 37.80437, - "lng": -122.2708, - "state": null, - "state_code": null, - "city": "Oakland", - "geonames_city": { - "id": 5378538, - "city": "Oakland", - "geonames_admin1": { - "name": "California", - "id": 5332921, - "ascii_name": "California", - "code": "US.CA" - }, - "geonames_admin2": { - "name": "Alameda", - "id": 5322745, - "ascii_name": "Alameda", - "code": "US.CA.001" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 6252001 - } - ], - "links": [ - "http://ucanr.edu/" - ], - "aliases": [], - "acronyms": [ - "ANR" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "United States", - "country_code": "US" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2166 8120" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100006488" - ] - }, - "GRID": { - "preferred": "grid.300433.7", - "all": "grid.300433.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index f107f772a..b8260e9dc 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,11 +22,6 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Successor", - "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index e3cc32031..3d71fdc7d 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Successor", + "type": "Parent", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json deleted file mode 100644 index 6640f0adb..000000000 --- a/status-test/updates/04k51q396.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/04k51q396", - "name": "University Hospital of Basel", - "email_address": null, - "ip_addresses": [], - "established": 1083, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unispital-basel.ch/" - ], - "aliases": [], - "acronyms": [ - "USB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", - "labels": [ - { - "label": "Universitätsspital Basel", - "iso639": "de" - }, - { - "label": "University Hospital of Basel", - "iso639": "en" - }, - { - "label": "Hôpital universitaire de Bâle", - "iso639": "fr" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "OrgRef": { - "preferred": null, - "all": [ - "40190980" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q1689257" - ] - }, - "GRID": { - "preferred": "grid.410567.1", - "all": "grid.410567.1" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json deleted file mode 100644 index 7cc54310c..000000000 --- a/status-test/updates/04kdfz702.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "id": "https://ror.org/04kdfz702", - "name": "Institut National des Sciences de l'Univers", - "email_address": null, - "ip_addresses": [], - "established": 1985, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "Astrophysique, Instrumentation et Modélisation", - "type": "Child", - "id": "https://ror.org/0015h8611" - }, - { - "label": "Besançon Astronomical Observatory", - "type": "Child", - "id": "https://ror.org/032582s48" - }, - { - "label": "Centre National de Recherches Météorologiques", - "type": "Child", - "id": "https://ror.org/004rej139" - }, - { - "label": "Centre d'Études Spatiales de la Biosphère", - "type": "Child", - "id": "https://ror.org/01225hq90" - }, - { - "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", - "type": "Child", - "id": "https://ror.org/01jt5ms28" - }, - { - "label": "Centre de Recherches Pétrographiques et Géochimiques", - "type": "Child", - "id": "https://ror.org/011nqat45" - }, - { - "label": "Centre for Astronomical Reseach of Lyon", - "type": "Child", - "id": "https://ror.org/0084x3h80" - }, - { - "label": "Centre for Research and Teaching in Environmental Geoscience", - "type": "Child", - "id": "https://ror.org/01pa4h393" - }, - { - "label": "Division Technique de I'INSU", - "type": "Child", - "id": "https://ror.org/01s48fc08" - }, - { - "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", - "type": "Child", - "id": "https://ror.org/01tsa0x55" - }, - { - "label": "Galaxies, Etoiles, Physique et Instrumentation", - "type": "Child", - "id": "https://ror.org/01920cw75" - }, - { - "label": "GeoAzur", - "type": "Child", - "id": "https://ror.org/05xtktk35" - }, - { - "label": "Geosciences Paris Sud", - "type": "Child", - "id": "https://ror.org/03s92mv58" - }, - { - "label": "Géosciences Environnement Toulouse", - "type": "Child", - "id": "https://ror.org/05k0qmv73" - }, - { - "label": "Géosciences Montpellier", - "type": "Child", - "id": "https://ror.org/024gts110" - }, - { - "label": "Géosciences Rennes", - "type": "Child", - "id": "https://ror.org/00vn0zc62" - }, - { - "label": "Haute-Provence Observatory", - "type": "Child", - "id": "https://ror.org/01gtjxz83" - }, - { - "label": "Institut UTINAM", - "type": "Child", - "id": "https://ror.org/02h0g9r59" - }, - { - "label": "Institut d'Astrophysique de Paris", - "type": "Child", - "id": "https://ror.org/022bnxw24" - }, - { - "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", - "type": "Child", - "id": "https://ror.org/002zc3t08" - }, - { - "label": "Institut de physique du globe de Paris", - "type": "Child", - "id": "https://ror.org/004gzqz66" - }, - { - "label": "Institut des Sciences de la Terre", - "type": "Child", - "id": "https://ror.org/01cf2sz15" - }, - { - "label": "Institut des Sciences de la Terre de Paris", - "type": "Child", - "id": "https://ror.org/00xagyq07" - }, - { - "label": "Institute of Environmental Geosciences", - "type": "Child", - "id": "https://ror.org/01wwcfa26" - }, - { - "label": "Interdisciplinary Laboratory for Continental Environments", - "type": "Child", - "id": "https://ror.org/05je79696" - }, - { - "label": "LIttoral, ENvironment and Societies", - "type": "Child", - "id": "https://ror.org/00r8amq78" - }, - { - "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", - "type": "Child", - "id": "https://ror.org/046cjf283" - }, - { - "label": "Laboratoire Magmas et Volcans", - "type": "Child", - "id": "https://ror.org/02vnq7240" - }, - { - "label": "Laboratoire Sciences de l'Univers au Cerfacs", - "type": "Child", - "id": "https://ror.org/03ck9wz82" - }, - { - "label": "Laboratoire d'Aérologie", - "type": "Child", - "id": "https://ror.org/017d9yp59" - }, - { - "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", - "type": "Child", - "id": "https://ror.org/05j3atf73" - }, - { - "label": "Laboratoire d'Optique Atmosphérique", - "type": "Child", - "id": "https://ror.org/02mdnkg28" - }, - { - "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", - "type": "Child", - "id": "https://ror.org/03fgt5a62" - }, - { - "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", - "type": "Child", - "id": "https://ror.org/04t89f389" - }, - { - "label": "Laboratoire de Géologie de l’École Normale Supérieure", - "type": "Child", - "id": "https://ror.org/05vg9cw43" - }, - { - "label": "Laboratoire de Météorologie Dynamique", - "type": "Child", - "id": "https://ror.org/000ehr937" - }, - { - "label": "Laboratoire de Météorologie Physique", - "type": "Child", - "id": "https://ror.org/03gz4y884" - }, - { - "label": "Laboratoire de Planétologie et Géodynamique de Nantes", - "type": "Child", - "id": "https://ror.org/04fm0sh33" - }, - { - "label": "Laboratoire de l'Atmosphère et des Cyclones", - "type": "Child", - "id": "https://ror.org/03wsemq03" - }, - { - "label": "Laboratoire des Sciences du Climat et de l'Environnement", - "type": "Child", - "id": "https://ror.org/03dsd0g48" - }, - { - "label": "Laboratoire d’Astrophysique de Marseille", - "type": "Child", - "id": "https://ror.org/00ssy9q55" - }, - { - "label": "Laboratoire d’Océanologie et de Géosciences", - "type": "Child", - "id": "https://ror.org/05m14rs93" - }, - { - "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", - "type": "Child", - "id": "https://ror.org/02chvqy57" - }, - { - "label": "Laboratory HydroSciences Montpellier", - "type": "Child", - "id": "https://ror.org/00aycez97" - }, - { - "label": "Laboratory Universe and Theories", - "type": "Child", - "id": "https://ror.org/00bbtde36" - }, - { - "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", - "type": "Child", - "id": "https://ror.org/03rtw5049" - }, - { - "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", - "type": "Child", - "id": "https://ror.org/01g5pq328" - }, - { - "label": "Laboratory of Astrophysics of Bordeaux", - "type": "Child", - "id": "https://ror.org/00yee3n23" - }, - { - "label": "Laboratory of Microbial Oceanography", - "type": "Child", - "id": "https://ror.org/05nk54s89" - }, - { - "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", - "type": "Child", - "id": "https://ror.org/02eptjh02" - }, - { - "label": "Laboratory of Subatomic Physics and Cosmology", - "type": "Child", - "id": "https://ror.org/03f0apy98" - }, - { - "label": "Lagrange Laboratory", - "type": "Child", - "id": "https://ror.org/02fdv8735" - }, - { - "label": "Observatoire Aquitain des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/03qma7a12" - }, - { - "label": "Observatoire Océanologique de Banyuls-sur-Mer", - "type": "Child", - "id": "https://ror.org/05gz4kr37" - }, - { - "label": "Observatoire des Sciences de l'Univers de la Réunion", - "type": "Child", - "id": "https://ror.org/05mv3tj33" - }, - { - "label": "Observatoires des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/040bzgy82" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Research Institute in Astrophysics and Planetology", - "type": "Child", - "id": "https://ror.org/05hm2ja81" - }, - { - "label": "Sytèmes de Référence Temps Espace", - "type": "Child", - "id": "https://ror.org/03tdef037" - }, - { - "label": "Villefranche Oceanographic Laboratory", - "type": "Child", - "id": "https://ror.org/05r5y6641" - } - ], - "addresses": [ - { - "lat": 48.79395, - "lng": 2.49323, - "state": null, - "state_code": null, - "city": "Saint-Maur-des-Fossés", - "geonames_city": { - "id": 2978179, - "city": "Saint-Maur-des-Fossés", - "geonames_admin1": { - "name": "Île-de-France", - "id": 3012874, - "ascii_name": "Île-de-France", - "code": "FR.11" - }, - "geonames_admin2": { - "name": "Val-de-Marne", - "id": 2971090, - "ascii_name": "Val-de-Marne", - "code": "FR.11.94" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.insu.cnrs.fr/en" - ], - "aliases": [], - "acronyms": [ - "INSU" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2154 1736" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100004617" - ] - }, - "GRID": { - "preferred": "grid.452348.c", - "all": "grid.452348.c" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json deleted file mode 100644 index 307a9cdb7..000000000 --- a/status-test/updates/04mczx267.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "id": "https://ror.org/04mczx267", - "name": "National Academy of Sciences of Armenia", - "email_address": "", - "ip_addresses": [], - "established": 1943, - "types": [ - "Government" - ], - "relationships": [ - { - "label": "Byurakan Astrophysical Observatory", - "type": "Child", - "id": "https://ror.org/0010mjy66" - }, - { - "label": "H.Buniatian Institute of Biochemistry", - "type": "Child", - "id": "https://ror.org/01gpc1r56" - }, - { - "label": "Institute for Informatics and Automation Problems", - "type": "Child", - "id": "https://ror.org/04a8k4p47" - }, - { - "label": "Institute for Physical Research", - "type": "Child", - "id": "https://ror.org/0187pag34" - }, - { - "label": "Institute of Archaeology and Ethnography", - "type": "Child", - "id": "https://ror.org/02af4h206" - }, - { - "label": "Institute of Botany", - "type": "Child", - "id": "https://ror.org/05mpgew40" - }, - { - "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", - "type": "Child", - "id": "https://ror.org/00588h422" - }, - { - "label": "Institute of Geological Sciences", - "type": "Child", - "id": "https://ror.org/03r6rhw30" - }, - { - "label": "Institute of Molecular Biology", - "type": "Child", - "id": "https://ror.org/03t8mqd25" - }, - { - "label": "Institute of Philosophy, Sociology and Law", - "type": "Child", - "id": "https://ror.org/02b7e7p97" - }, - { - "label": "Institute of Radiophysics and Electronics", - "type": "Child", - "id": "https://ror.org/051jgxz75" - }, - { - "label": "L. A. Orbeli Institute of Physiology NAS RA", - "type": "Child", - "id": "https://ror.org/02gse4n09" - }, - { - "label": "Scientific Center of Zoology and Hydroecology", - "type": "Child", - "id": "https://ror.org/00t5ymp38" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.sci.am/" - ], - "aliases": [ - "Armenian National Academy of Sciences" - ], - "acronyms": [ - "NAS RA" - ], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", - "labels": [ - { - "label": "Հայաստանի գիտությունների ազգային ակադեմիա", - "iso639": "hy" - } - ], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 1146 7878" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100008721" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "3712844" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2379496" - ] - }, - "GRID": { - "preferred": "grid.418094.0", - "all": "grid.418094.0" - } - } -} \ No newline at end of file diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json deleted file mode 100644 index 6a2fd873a..000000000 --- a/status-test/updates/0530qwm02.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "id": "https://ror.org/0530qwm02", - "name": "Earth and Environment Institute of Strasbourg", - "email_address": null, - "ip_addresses": [], - "established": 2021, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of Strasbourg", - "type": "Parent", - "id": "https://ror.org/00pg6eq24" - }, - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "National School for Water and Environmental Engineering", - "type": "Parent", - "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "https://ites.unistra.fr/" - ], - "aliases": [], - "acronyms": [ - "ITES" - ], - "status": "active", - "wikipedia_url": null, - "labels": [ - { - "label": "Institut Terre et Environnement de Strasbourg", - "iso639": "fr" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": {} -} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 15d58cde0..965c400fa 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Union Against Tuberculosis and Lung Disease", - "type": "Successor", - "id": "https://ror.org/037x4qk98" - } - ], + "relationships": [], "addresses": [ { "lat": 40.71427, From dc4b5c150ddeddd0707ce904f129d0c48de4451c Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 14:50:54 +0000 Subject: [PATCH 37/49] Apply relationship changes to files --- status-test/new/04kjrxx07.json | 8 ++- status-test/new/051dbx029.json | 8 ++- status-test/updates/01br3aa17.json | 5 ++ status-test/updates/020rbyg91.json | 106 +++++++++++++++++++++++++++++ status-test/updates/02yqgb753.json | 91 +++++++++++++++++++++++++ status-test/updates/02zbz4g27.json | 8 ++- status-test/updates/03t0t6y08.json | 99 +++++++++++++++++++++++++++ status-test/updates/03y81da23.json | 5 ++ status-test/updates/03ybx0x41.json | 2 +- status-test/updates/0530qwm02.json | 97 ++++++++++++++++++++++++++ status-test/updates/05s7dz794.json | 8 ++- 11 files changed, 432 insertions(+), 5 deletions(-) create mode 100644 status-test/updates/020rbyg91.json create mode 100644 status-test/updates/02yqgb753.json create mode 100644 status-test/updates/03t0t6y08.json create mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b3efb5ff6..b4361343d 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,7 +26,13 @@ } }, "established": 1965, - "relationships": [], + "relationships": [ + { + "label": "University of California Division of Agriculture and Natural Resources", + "type": "Parent", + "id": "https://ror.org/03t0t6y08" + } + ], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index 4006fff10..d86a54e01 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,7 +21,13 @@ } }, "established": null, - "relationships": [], + "relationships": [ + { + "label": "National Institutes for Quantum and Radiological Science and Technology", + "type": "Parent", + "id": "https://ror.org/020rbyg91" + } + ], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 0bfd78b8b..3a2412e95 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,6 +12,11 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" + }, + { + "label": "Life Sciences International Postgraduate Educational Center", + "type": "Successor", + "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json new file mode 100644 index 000000000..ed3994f21 --- /dev/null +++ b/status-test/updates/020rbyg91.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/020rbyg91", + "name": "National Institutes for Quantum and Radiological Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kansai Photon Science Institute", + "type": "Child", + "id": "https://ror.org/051dbx029" + } + ], + "addresses": [ + { + "lat": 35.6, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Chiba", + "geonames_city": { + "id": 2113015, + "city": "Chiba", + "geonames_admin1": { + "name": "Chiba", + "id": 2113014, + "ascii_name": "Chiba", + "code": "JP.04" + }, + "geonames_admin2": { + "name": "Chiba-shi", + "id": 2113012, + "ascii_name": "Chiba-shi", + "code": "JP.04.2113012" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.qst.go.jp" + ], + "aliases": [], + "acronyms": [ + "QST" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "量子科学技術研究開発機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5900 003X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006327" + ] + }, + "Wikidata": { + "preferred": "Q24067079", + "all": [ + "Q24067079", + "Q39022389" + ] + }, + "GRID": { + "preferred": "grid.482503.8", + "all": "grid.482503.8" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json new file mode 100644 index 000000000..f7bd3c951 --- /dev/null +++ b/status-test/updates/02yqgb753.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yqgb753", + "name": "Life Sciences International Postgraduate Educational Center", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United Nations Educational, Scientific and Cultural Organization", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.biophys.am/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q77077134" + ] + }, + "GRID": { + "preferred": "grid.506497.9", + "all": "grid.506497.9" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index 74ac37638..d19ba3249 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Federation of Library Associations and Institutions", + "type": "Successor", + "id": "https://ror.org/026gatw61" + } + ], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json new file mode 100644 index 000000000..2dfb32e6c --- /dev/null +++ b/status-test/updates/03t0t6y08.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03t0t6y08", + "name": "University of California Division of Agriculture and Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Kearney Agricultural Research and Extension Center", + "type": "Child", + "id": "https://ror.org/04kjrxx07" + } + ], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://ucanr.edu/" + ], + "aliases": [], + "acronyms": [ + "ANR" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2166 8120" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006488" + ] + }, + "GRID": { + "preferred": "grid.300433.7", + "all": "grid.300433.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index b8260e9dc..f107f772a 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,6 +22,11 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Successor", + "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index 3d71fdc7d..e3cc32031 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Parent", + "type": "Successor", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json new file mode 100644 index 000000000..6a2fd873a --- /dev/null +++ b/status-test/updates/0530qwm02.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0530qwm02", + "name": "Earth and Environment Institute of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ites.unistra.fr/" + ], + "aliases": [], + "acronyms": [ + "ITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Terre et Environnement de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 965c400fa..15d58cde0 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Union Against Tuberculosis and Lung Disease", + "type": "Successor", + "id": "https://ror.org/037x4qk98" + } + ], "addresses": [ { "lat": 40.71427, From cd4a02582906f621a4f64dc6c0cd8574226ee5af Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 14:52:10 +0000 Subject: [PATCH 38/49] Apply relationship changes to files --- status-test/updates/00pg6eq24.json | 313 +++++++++++++++++++++++ status-test/updates/02jhjzd11.json | 88 +++++++ status-test/updates/02nhqek82.json | 107 ++++++++ status-test/updates/02s6k3f65.json | 144 +++++++++++ status-test/updates/04k51q396.json | 107 ++++++++ status-test/updates/04kdfz702.json | 394 +++++++++++++++++++++++++++++ status-test/updates/04mczx267.json | 173 +++++++++++++ 7 files changed, 1326 insertions(+) create mode 100644 status-test/updates/00pg6eq24.json create mode 100644 status-test/updates/02jhjzd11.json create mode 100644 status-test/updates/02nhqek82.json create mode 100644 status-test/updates/02s6k3f65.json create mode 100644 status-test/updates/04k51q396.json create mode 100644 status-test/updates/04kdfz702.json create mode 100644 status-test/updates/04mczx267.json diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json new file mode 100644 index 000000000..8ecaea004 --- /dev/null +++ b/status-test/updates/00pg6eq24.json @@ -0,0 +1,313 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": "", + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", + "type": "Related", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Immune Response and Development in Insects", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/01epym565" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Biophotonics and Pharmacology", + "type": "Child", + "id": "https://ror.org/0032sc770" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "type": "Child", + "id": "https://ror.org/057916623" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Regenerative NanoMedicine", + "type": "Child", + "id": "https://ror.org/0032jvj22" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.en.unistra.fr/index.php?id=21707" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Université de Strasbourg", + "iso639": "fr" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2157 9291" + ] + }, + "FundRef": { + "preferred": "501100003768", + "all": [ + "501100003768", + "501100003998" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "722824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q157575" + ] + }, + "GRID": { + "preferred": "grid.11843.3f", + "all": "grid.11843.3f" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json new file mode 100644 index 000000000..30fb80bb8 --- /dev/null +++ b/status-test/updates/02jhjzd11.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02jhjzd11", + "name": "National School for Water and Environmental Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://engees.unistra.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ENGEES" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8652 7065" + ] + }, + "GRID": { + "preferred": "grid.466385.a", + "all": "grid.466385.a" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json new file mode 100644 index 000000000..f7b07f238 --- /dev/null +++ b/status-test/updates/02nhqek82.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02nhqek82", + "name": "University Children’s Hospital Basel", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.ukbb.ch/" + ], + "aliases": [], + "acronyms": [ + "UKBB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", + "labels": [ + { + "label": "Universitäts-Kinderspital beider Basel", + "iso639": "de" + }, + { + "label": "Hôpital universitaire pédiatrique des deux Bâle", + "iso639": "fr" + }, + { + "label": "University Children’s Hospital Basel", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0509 0981" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2496240" + ] + }, + "GRID": { + "preferred": "grid.412347.7", + "all": "grid.412347.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json new file mode 100644 index 000000000..3a6582644 --- /dev/null +++ b/status-test/updates/02s6k3f65.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/02s6k3f65", + "name": "University of Basel", + "email_address": "", + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Friedrich Miescher Institute", + "type": "Related", + "id": "https://ror.org/01bmjkv45" + }, + { + "label": "Swiss Tropical and Public Health Institute", + "type": "Related", + "id": "https://ror.org/03adhka07" + }, + { + "label": "University Children’s Hospital Basel", + "type": "Related", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Related", + "id": "https://ror.org/04k51q396" + }, + { + "label": "Universitäre Psychiatrische Kliniken Basel", + "type": "Related", + "id": "https://ror.org/05fw3jg78" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unibas.ch/de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", + "labels": [ + { + "label": "Universität Basel", + "iso639": "de" + }, + { + "label": "Université de Bâle", + "iso639": "fr" + }, + { + "label": "Università di Basilea", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0642" + ] + }, + "FundRef": { + "preferred": "100008375", + "all": [ + "100008375", + "501100008595", + "100008550" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "427614" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q372608" + ] + }, + "GRID": { + "preferred": "grid.6612.3", + "all": "grid.6612.3" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json new file mode 100644 index 000000000..6640f0adb --- /dev/null +++ b/status-test/updates/04k51q396.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04k51q396", + "name": "University Hospital of Basel", + "email_address": null, + "ip_addresses": [], + "established": 1083, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unispital-basel.ch/" + ], + "aliases": [], + "acronyms": [ + "USB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", + "labels": [ + { + "label": "Universitätsspital Basel", + "iso639": "de" + }, + { + "label": "University Hospital of Basel", + "iso639": "en" + }, + { + "label": "Hôpital universitaire de Bâle", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "40190980" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1689257" + ] + }, + "GRID": { + "preferred": "grid.410567.1", + "all": "grid.410567.1" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json new file mode 100644 index 000000000..7cc54310c --- /dev/null +++ b/status-test/updates/04kdfz702.json @@ -0,0 +1,394 @@ +{ + "id": "https://ror.org/04kdfz702", + "name": "Institut National des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Besançon Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/032582s48" + }, + { + "label": "Centre National de Recherches Météorologiques", + "type": "Child", + "id": "https://ror.org/004rej139" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Centre for Research and Teaching in Environmental Geoscience", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "GeoAzur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Geosciences Paris Sud", + "type": "Child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Haute-Provence Observatory", + "type": "Child", + "id": "https://ror.org/01gtjxz83" + }, + { + "label": "Institut UTINAM", + "type": "Child", + "id": "https://ror.org/02h0g9r59" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Child", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Interdisciplinary Laboratory for Continental Environments", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Sciences de l'Univers au Cerfacs", + "type": "Child", + "id": "https://ror.org/03ck9wz82" + }, + { + "label": "Laboratoire d'Aérologie", + "type": "Child", + "id": "https://ror.org/017d9yp59" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", + "type": "Child", + "id": "https://ror.org/03fgt5a62" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Laboratoire de Planétologie et Géodynamique de Nantes", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire de l'Atmosphère et des Cyclones", + "type": "Child", + "id": "https://ror.org/03wsemq03" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory Universe and Theories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "Child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratory of Microbial Oceanography", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Observatoires des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/040bzgy82" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Research Institute in Astrophysics and Planetology", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "Sytèmes de Référence Temps Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Villefranche Oceanographic Laboratory", + "type": "Child", + "id": "https://ror.org/05r5y6641" + } + ], + "addresses": [ + { + "lat": 48.79395, + "lng": 2.49323, + "state": null, + "state_code": null, + "city": "Saint-Maur-des-Fossés", + "geonames_city": { + "id": 2978179, + "city": "Saint-Maur-des-Fossés", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.insu.cnrs.fr/en" + ], + "aliases": [], + "acronyms": [ + "INSU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2154 1736" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004617" + ] + }, + "GRID": { + "preferred": "grid.452348.c", + "all": "grid.452348.c" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json new file mode 100644 index 000000000..307a9cdb7 --- /dev/null +++ b/status-test/updates/04mczx267.json @@ -0,0 +1,173 @@ +{ + "id": "https://ror.org/04mczx267", + "name": "National Academy of Sciences of Armenia", + "email_address": "", + "ip_addresses": [], + "established": 1943, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Byurakan Astrophysical Observatory", + "type": "Child", + "id": "https://ror.org/0010mjy66" + }, + { + "label": "H.Buniatian Institute of Biochemistry", + "type": "Child", + "id": "https://ror.org/01gpc1r56" + }, + { + "label": "Institute for Informatics and Automation Problems", + "type": "Child", + "id": "https://ror.org/04a8k4p47" + }, + { + "label": "Institute for Physical Research", + "type": "Child", + "id": "https://ror.org/0187pag34" + }, + { + "label": "Institute of Archaeology and Ethnography", + "type": "Child", + "id": "https://ror.org/02af4h206" + }, + { + "label": "Institute of Botany", + "type": "Child", + "id": "https://ror.org/05mpgew40" + }, + { + "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", + "type": "Child", + "id": "https://ror.org/00588h422" + }, + { + "label": "Institute of Geological Sciences", + "type": "Child", + "id": "https://ror.org/03r6rhw30" + }, + { + "label": "Institute of Molecular Biology", + "type": "Child", + "id": "https://ror.org/03t8mqd25" + }, + { + "label": "Institute of Philosophy, Sociology and Law", + "type": "Child", + "id": "https://ror.org/02b7e7p97" + }, + { + "label": "Institute of Radiophysics and Electronics", + "type": "Child", + "id": "https://ror.org/051jgxz75" + }, + { + "label": "L. A. Orbeli Institute of Physiology NAS RA", + "type": "Child", + "id": "https://ror.org/02gse4n09" + }, + { + "label": "Scientific Center of Zoology and Hydroecology", + "type": "Child", + "id": "https://ror.org/00t5ymp38" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.sci.am/" + ], + "aliases": [ + "Armenian National Academy of Sciences" + ], + "acronyms": [ + "NAS RA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", + "labels": [ + { + "label": "Հայաստանի գիտությունների ազգային ակադեմիա", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1146 7878" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008721" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3712844" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2379496" + ] + }, + "GRID": { + "preferred": "grid.418094.0", + "all": "grid.418094.0" + } + } +} \ No newline at end of file From 4f98ddd5caf2c88f8ca301fbffaf8bb9e8acf407 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 09:55:16 -0500 Subject: [PATCH 39/49] reset status-test files --- status-test/new/04kjrxx07.json | 8 +- status-test/new/051dbx029.json | 8 +- status-test/updates/00pg6eq24.json | 313 ----------------------- status-test/updates/01br3aa17.json | 5 - status-test/updates/020rbyg91.json | 106 -------- status-test/updates/02jhjzd11.json | 88 ------- status-test/updates/02nhqek82.json | 107 -------- status-test/updates/02s6k3f65.json | 144 ----------- status-test/updates/02yqgb753.json | 91 ------- status-test/updates/02zbz4g27.json | 8 +- status-test/updates/03t0t6y08.json | 99 -------- status-test/updates/03y81da23.json | 5 - status-test/updates/03ybx0x41.json | 2 +- status-test/updates/04k51q396.json | 107 -------- status-test/updates/04kdfz702.json | 394 ----------------------------- status-test/updates/04mczx267.json | 173 ------------- status-test/updates/0530qwm02.json | 97 ------- status-test/updates/05s7dz794.json | 8 +- 18 files changed, 5 insertions(+), 1758 deletions(-) delete mode 100644 status-test/updates/00pg6eq24.json delete mode 100644 status-test/updates/020rbyg91.json delete mode 100644 status-test/updates/02jhjzd11.json delete mode 100644 status-test/updates/02nhqek82.json delete mode 100644 status-test/updates/02s6k3f65.json delete mode 100644 status-test/updates/02yqgb753.json delete mode 100644 status-test/updates/03t0t6y08.json delete mode 100644 status-test/updates/04k51q396.json delete mode 100644 status-test/updates/04kdfz702.json delete mode 100644 status-test/updates/04mczx267.json delete mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b4361343d..b3efb5ff6 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,13 +26,7 @@ } }, "established": 1965, - "relationships": [ - { - "label": "University of California Division of Agriculture and Natural Resources", - "type": "Parent", - "id": "https://ror.org/03t0t6y08" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index d86a54e01..4006fff10 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,13 +21,7 @@ } }, "established": null, - "relationships": [ - { - "label": "National Institutes for Quantum and Radiological Science and Technology", - "type": "Parent", - "id": "https://ror.org/020rbyg91" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json deleted file mode 100644 index 8ecaea004..000000000 --- a/status-test/updates/00pg6eq24.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "id": "https://ror.org/00pg6eq24", - "name": "University of Strasbourg", - "email_address": "", - "ip_addresses": [], - "established": 1538, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", - "type": "Related", - "id": "https://ror.org/02zwf7d57" - }, - { - "label": "Hôpitaux Universitaires de Strasbourg", - "type": "Related", - "id": "https://ror.org/04bckew43" - }, - { - "label": "Architecture et Réactivité de l'arN", - "type": "Child", - "id": "https://ror.org/03xmjtz19" - }, - { - "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", - "type": "Child", - "id": "https://ror.org/007xqmx73" - }, - { - "label": "Biomatériaux et Bioingénierie", - "type": "Child", - "id": "https://ror.org/05vcax154" - }, - { - "label": "Biotechnologie et Signalisation Cellulaire", - "type": "Child", - "id": "https://ror.org/047fwb937" - }, - { - "label": "Bureau for Economic Theory and Applications", - "type": "Child", - "id": "https://ror.org/05em8ne27" - }, - { - "label": "Fédération de Recherche PhotoVoltaïque", - "type": "Child", - "id": "https://ror.org/059fn5f50" - }, - { - "label": "Grapevine Health and Wine Quality", - "type": "Child", - "id": "https://ror.org/0291jbz11" - }, - { - "label": "Génétique Moléculaire Génomique Microbiologie", - "type": "Child", - "id": "https://ror.org/05n4nmn13" - }, - { - "label": "Hubert Curien Pluridisciplinary Institute", - "type": "Child", - "id": "https://ror.org/01g3mb532" - }, - { - "label": "Immune Response and Development in Insects", - "type": "Child", - "id": "https://ror.org/030przz70" - }, - { - "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", - "type": "Child", - "id": "https://ror.org/041v2hk34" - }, - { - "label": "Institut Charles Sadron", - "type": "Child", - "id": "https://ror.org/05whrjc31" - }, - { - "label": "Institut de Biologie Moléculaire des Plantes", - "type": "Child", - "id": "https://ror.org/01jm8fn98" - }, - { - "label": "Institut de Chimie de Strasbourg", - "type": "Child", - "id": "https://ror.org/00se7bf12" - }, - { - "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", - "type": "Child", - "id": "https://ror.org/02za18p66" - }, - { - "label": "Institut de Recherche Mathématique Avancée", - "type": "Child", - "id": "https://ror.org/02hwgty18" - }, - { - "label": "Institut de Science et d'Ingénierie Supramoléculaires", - "type": "Child", - "id": "https://ror.org/00xts7d02" - }, - { - "label": "Institute for Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/05qpmg879" - }, - { - "label": "Institute of Cellular and Integrative Neurosciences", - "type": "Child", - "id": "https://ror.org/025mhd687" - }, - { - "label": "Institute of Chemistry and Processes for Energy, Environment and Health", - "type": "Child", - "id": "https://ror.org/02tn0tm63" - }, - { - "label": "Institute of Genetics and Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/0015ws592" - }, - { - "label": "Laboratoire Image, Ville, Environnement", - "type": "Child", - "id": "https://ror.org/03x8fem72" - }, - { - "label": "Laboratoire de Chimie Moléculaire", - "type": "Child", - "id": "https://ror.org/01epym565" - }, - { - "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", - "type": "Child", - "id": "https://ror.org/01m71e459" - }, - { - "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", - "type": "Child", - "id": "https://ror.org/008pt4x48" - }, - { - "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", - "type": "Child", - "id": "https://ror.org/00k4e5n71" - }, - { - "label": "Laboratory for Therapeutic Innovation", - "type": "Child", - "id": "https://ror.org/02g4mxc89" - }, - { - "label": "Laboratory of Biophotonics and Pharmacology", - "type": "Child", - "id": "https://ror.org/0032sc770" - }, - { - "label": "Laboratory of Design and Application of Bioactive Molecules", - "type": "Child", - "id": "https://ror.org/00rh71z37" - }, - { - "label": "Laboratory of Molecular Anthropology and Image Synthesis", - "type": "Child", - "id": "https://ror.org/05w482q29" - }, - { - "label": "Maison Interuniversitaire des Sciences de l'Homme", - "type": "Child", - "id": "https://ror.org/02jm89840" - }, - { - "label": "Mitochondrie, stress oxydant et protection musculaire", - "type": "Child", - "id": "https://ror.org/05sc3hd12" - }, - { - "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", - "type": "Child", - "id": "https://ror.org/057916623" - }, - { - "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", - "type": "Child", - "id": "https://ror.org/00b4q1853" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Regenerative NanoMedicine", - "type": "Child", - "id": "https://ror.org/0032jvj22" - }, - { - "label": "Societies, Actors and Governement in Europe", - "type": "Child", - "id": "https://ror.org/00bhwwh42" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.en.unistra.fr/index.php?id=21707" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", - "labels": [ - { - "label": "Université de Strasbourg", - "iso639": "fr" - }, - { - "label": "Universität Straßburg", - "iso639": "de" - }, - { - "label": "Universitat d'Estrasburg", - "iso639": "ca" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2157 9291" - ] - }, - "FundRef": { - "preferred": "501100003768", - "all": [ - "501100003768", - "501100003998" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "722824" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q157575" - ] - }, - "GRID": { - "preferred": "grid.11843.3f", - "all": "grid.11843.3f" - } - } -} \ No newline at end of file diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 3a2412e95..0bfd78b8b 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,11 +12,6 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" - }, - { - "label": "Life Sciences International Postgraduate Educational Center", - "type": "Successor", - "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json deleted file mode 100644 index ed3994f21..000000000 --- a/status-test/updates/020rbyg91.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "id": "https://ror.org/020rbyg91", - "name": "National Institutes for Quantum and Radiological Science and Technology", - "email_address": null, - "ip_addresses": [], - "established": 2016, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "Kansai Photon Science Institute", - "type": "Child", - "id": "https://ror.org/051dbx029" - } - ], - "addresses": [ - { - "lat": 35.6, - "lng": 140.11667, - "state": null, - "state_code": null, - "city": "Chiba", - "geonames_city": { - "id": 2113015, - "city": "Chiba", - "geonames_admin1": { - "name": "Chiba", - "id": 2113014, - "ascii_name": "Chiba", - "code": "JP.04" - }, - "geonames_admin2": { - "name": "Chiba-shi", - "id": 2113012, - "ascii_name": "Chiba-shi", - "code": "JP.04.2113012" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 1861060 - } - ], - "links": [ - "https://www.qst.go.jp" - ], - "aliases": [], - "acronyms": [ - "QST" - ], - "status": "active", - "wikipedia_url": "", - "labels": [ - { - "label": "量子科学技術研究開発機構", - "iso639": "ja" - } - ], - "country": { - "country_name": "Japan", - "country_code": "JP" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 5900 003X" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100006327" - ] - }, - "Wikidata": { - "preferred": "Q24067079", - "all": [ - "Q24067079", - "Q39022389" - ] - }, - "GRID": { - "preferred": "grid.482503.8", - "all": "grid.482503.8" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json deleted file mode 100644 index 30fb80bb8..000000000 --- a/status-test/updates/02jhjzd11.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "id": "https://ror.org/02jhjzd11", - "name": "National School for Water and Environmental Engineering", - "email_address": null, - "ip_addresses": [], - "established": 1952, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://engees.unistra.fr/en/" - ], - "aliases": [], - "acronyms": [ - "ENGEES" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0000 8652 7065" - ] - }, - "GRID": { - "preferred": "grid.466385.a", - "all": "grid.466385.a" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json deleted file mode 100644 index f7b07f238..000000000 --- a/status-test/updates/02nhqek82.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/02nhqek82", - "name": "University Children’s Hospital Basel", - "email_address": null, - "ip_addresses": [], - "established": 1862, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.ukbb.ch/" - ], - "aliases": [], - "acronyms": [ - "UKBB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", - "labels": [ - { - "label": "Universitäts-Kinderspital beider Basel", - "iso639": "de" - }, - { - "label": "Hôpital universitaire pédiatrique des deux Bâle", - "iso639": "fr" - }, - { - "label": "University Children’s Hospital Basel", - "iso639": "en" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 0509 0981" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2496240" - ] - }, - "GRID": { - "preferred": "grid.412347.7", - "all": "grid.412347.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json deleted file mode 100644 index 3a6582644..000000000 --- a/status-test/updates/02s6k3f65.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "id": "https://ror.org/02s6k3f65", - "name": "University of Basel", - "email_address": "", - "ip_addresses": [], - "established": 1460, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Friedrich Miescher Institute", - "type": "Related", - "id": "https://ror.org/01bmjkv45" - }, - { - "label": "Swiss Tropical and Public Health Institute", - "type": "Related", - "id": "https://ror.org/03adhka07" - }, - { - "label": "University Children’s Hospital Basel", - "type": "Related", - "id": "https://ror.org/02nhqek82" - }, - { - "label": "University Hospital of Basel", - "type": "Related", - "id": "https://ror.org/04k51q396" - }, - { - "label": "Universitäre Psychiatrische Kliniken Basel", - "type": "Related", - "id": "https://ror.org/05fw3jg78" - }, - { - "label": "Swiss National Data and Service Center for the Humanities", - "type": "Related", - "id": "https://ror.org/047f01g80" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unibas.ch/de" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", - "labels": [ - { - "label": "Universität Basel", - "iso639": "de" - }, - { - "label": "Université de Bâle", - "iso639": "fr" - }, - { - "label": "Università di Basilea", - "iso639": "it" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 1937 0642" - ] - }, - "FundRef": { - "preferred": "100008375", - "all": [ - "100008375", - "501100008595", - "100008550" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "427614" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q372608" - ] - }, - "GRID": { - "preferred": "grid.6612.3", - "all": "grid.6612.3" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json deleted file mode 100644 index f7bd3c951..000000000 --- a/status-test/updates/02yqgb753.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "id": "https://ror.org/02yqgb753", - "name": "Life Sciences International Postgraduate Educational Center", - "email_address": null, - "ip_addresses": [], - "established": 1977, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "United Nations Educational, Scientific and Cultural Organization", - "type": "Parent", - "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.biophys.am/" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "Wikidata": { - "preferred": null, - "all": [ - "Q77077134" - ] - }, - "GRID": { - "preferred": "grid.506497.9", - "all": "grid.506497.9" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index d19ba3249..74ac37638 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Federation of Library Associations and Institutions", - "type": "Successor", - "id": "https://ror.org/026gatw61" - } - ], + "relationships": [], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json deleted file mode 100644 index 2dfb32e6c..000000000 --- a/status-test/updates/03t0t6y08.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "id": "https://ror.org/03t0t6y08", - "name": "University of California Division of Agriculture and Natural Resources", - "email_address": null, - "ip_addresses": [], - "established": 1913, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of California System", - "type": "Parent", - "id": "https://ror.org/00pjdza24" - }, - { - "label": "Kearney Agricultural Research and Extension Center", - "type": "Child", - "id": "https://ror.org/04kjrxx07" - } - ], - "addresses": [ - { - "lat": 37.80437, - "lng": -122.2708, - "state": null, - "state_code": null, - "city": "Oakland", - "geonames_city": { - "id": 5378538, - "city": "Oakland", - "geonames_admin1": { - "name": "California", - "id": 5332921, - "ascii_name": "California", - "code": "US.CA" - }, - "geonames_admin2": { - "name": "Alameda", - "id": 5322745, - "ascii_name": "Alameda", - "code": "US.CA.001" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 6252001 - } - ], - "links": [ - "http://ucanr.edu/" - ], - "aliases": [], - "acronyms": [ - "ANR" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "United States", - "country_code": "US" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2166 8120" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100006488" - ] - }, - "GRID": { - "preferred": "grid.300433.7", - "all": "grid.300433.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index f107f772a..b8260e9dc 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,11 +22,6 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Successor", - "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index e3cc32031..3d71fdc7d 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Successor", + "type": "Parent", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json deleted file mode 100644 index 6640f0adb..000000000 --- a/status-test/updates/04k51q396.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/04k51q396", - "name": "University Hospital of Basel", - "email_address": null, - "ip_addresses": [], - "established": 1083, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unispital-basel.ch/" - ], - "aliases": [], - "acronyms": [ - "USB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", - "labels": [ - { - "label": "Universitätsspital Basel", - "iso639": "de" - }, - { - "label": "University Hospital of Basel", - "iso639": "en" - }, - { - "label": "Hôpital universitaire de Bâle", - "iso639": "fr" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "OrgRef": { - "preferred": null, - "all": [ - "40190980" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q1689257" - ] - }, - "GRID": { - "preferred": "grid.410567.1", - "all": "grid.410567.1" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json deleted file mode 100644 index 7cc54310c..000000000 --- a/status-test/updates/04kdfz702.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "id": "https://ror.org/04kdfz702", - "name": "Institut National des Sciences de l'Univers", - "email_address": null, - "ip_addresses": [], - "established": 1985, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "Astrophysique, Instrumentation et Modélisation", - "type": "Child", - "id": "https://ror.org/0015h8611" - }, - { - "label": "Besançon Astronomical Observatory", - "type": "Child", - "id": "https://ror.org/032582s48" - }, - { - "label": "Centre National de Recherches Météorologiques", - "type": "Child", - "id": "https://ror.org/004rej139" - }, - { - "label": "Centre d'Études Spatiales de la Biosphère", - "type": "Child", - "id": "https://ror.org/01225hq90" - }, - { - "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", - "type": "Child", - "id": "https://ror.org/01jt5ms28" - }, - { - "label": "Centre de Recherches Pétrographiques et Géochimiques", - "type": "Child", - "id": "https://ror.org/011nqat45" - }, - { - "label": "Centre for Astronomical Reseach of Lyon", - "type": "Child", - "id": "https://ror.org/0084x3h80" - }, - { - "label": "Centre for Research and Teaching in Environmental Geoscience", - "type": "Child", - "id": "https://ror.org/01pa4h393" - }, - { - "label": "Division Technique de I'INSU", - "type": "Child", - "id": "https://ror.org/01s48fc08" - }, - { - "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", - "type": "Child", - "id": "https://ror.org/01tsa0x55" - }, - { - "label": "Galaxies, Etoiles, Physique et Instrumentation", - "type": "Child", - "id": "https://ror.org/01920cw75" - }, - { - "label": "GeoAzur", - "type": "Child", - "id": "https://ror.org/05xtktk35" - }, - { - "label": "Geosciences Paris Sud", - "type": "Child", - "id": "https://ror.org/03s92mv58" - }, - { - "label": "Géosciences Environnement Toulouse", - "type": "Child", - "id": "https://ror.org/05k0qmv73" - }, - { - "label": "Géosciences Montpellier", - "type": "Child", - "id": "https://ror.org/024gts110" - }, - { - "label": "Géosciences Rennes", - "type": "Child", - "id": "https://ror.org/00vn0zc62" - }, - { - "label": "Haute-Provence Observatory", - "type": "Child", - "id": "https://ror.org/01gtjxz83" - }, - { - "label": "Institut UTINAM", - "type": "Child", - "id": "https://ror.org/02h0g9r59" - }, - { - "label": "Institut d'Astrophysique de Paris", - "type": "Child", - "id": "https://ror.org/022bnxw24" - }, - { - "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", - "type": "Child", - "id": "https://ror.org/002zc3t08" - }, - { - "label": "Institut de physique du globe de Paris", - "type": "Child", - "id": "https://ror.org/004gzqz66" - }, - { - "label": "Institut des Sciences de la Terre", - "type": "Child", - "id": "https://ror.org/01cf2sz15" - }, - { - "label": "Institut des Sciences de la Terre de Paris", - "type": "Child", - "id": "https://ror.org/00xagyq07" - }, - { - "label": "Institute of Environmental Geosciences", - "type": "Child", - "id": "https://ror.org/01wwcfa26" - }, - { - "label": "Interdisciplinary Laboratory for Continental Environments", - "type": "Child", - "id": "https://ror.org/05je79696" - }, - { - "label": "LIttoral, ENvironment and Societies", - "type": "Child", - "id": "https://ror.org/00r8amq78" - }, - { - "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", - "type": "Child", - "id": "https://ror.org/046cjf283" - }, - { - "label": "Laboratoire Magmas et Volcans", - "type": "Child", - "id": "https://ror.org/02vnq7240" - }, - { - "label": "Laboratoire Sciences de l'Univers au Cerfacs", - "type": "Child", - "id": "https://ror.org/03ck9wz82" - }, - { - "label": "Laboratoire d'Aérologie", - "type": "Child", - "id": "https://ror.org/017d9yp59" - }, - { - "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", - "type": "Child", - "id": "https://ror.org/05j3atf73" - }, - { - "label": "Laboratoire d'Optique Atmosphérique", - "type": "Child", - "id": "https://ror.org/02mdnkg28" - }, - { - "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", - "type": "Child", - "id": "https://ror.org/03fgt5a62" - }, - { - "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", - "type": "Child", - "id": "https://ror.org/04t89f389" - }, - { - "label": "Laboratoire de Géologie de l’École Normale Supérieure", - "type": "Child", - "id": "https://ror.org/05vg9cw43" - }, - { - "label": "Laboratoire de Météorologie Dynamique", - "type": "Child", - "id": "https://ror.org/000ehr937" - }, - { - "label": "Laboratoire de Météorologie Physique", - "type": "Child", - "id": "https://ror.org/03gz4y884" - }, - { - "label": "Laboratoire de Planétologie et Géodynamique de Nantes", - "type": "Child", - "id": "https://ror.org/04fm0sh33" - }, - { - "label": "Laboratoire de l'Atmosphère et des Cyclones", - "type": "Child", - "id": "https://ror.org/03wsemq03" - }, - { - "label": "Laboratoire des Sciences du Climat et de l'Environnement", - "type": "Child", - "id": "https://ror.org/03dsd0g48" - }, - { - "label": "Laboratoire d’Astrophysique de Marseille", - "type": "Child", - "id": "https://ror.org/00ssy9q55" - }, - { - "label": "Laboratoire d’Océanologie et de Géosciences", - "type": "Child", - "id": "https://ror.org/05m14rs93" - }, - { - "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", - "type": "Child", - "id": "https://ror.org/02chvqy57" - }, - { - "label": "Laboratory HydroSciences Montpellier", - "type": "Child", - "id": "https://ror.org/00aycez97" - }, - { - "label": "Laboratory Universe and Theories", - "type": "Child", - "id": "https://ror.org/00bbtde36" - }, - { - "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", - "type": "Child", - "id": "https://ror.org/03rtw5049" - }, - { - "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", - "type": "Child", - "id": "https://ror.org/01g5pq328" - }, - { - "label": "Laboratory of Astrophysics of Bordeaux", - "type": "Child", - "id": "https://ror.org/00yee3n23" - }, - { - "label": "Laboratory of Microbial Oceanography", - "type": "Child", - "id": "https://ror.org/05nk54s89" - }, - { - "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", - "type": "Child", - "id": "https://ror.org/02eptjh02" - }, - { - "label": "Laboratory of Subatomic Physics and Cosmology", - "type": "Child", - "id": "https://ror.org/03f0apy98" - }, - { - "label": "Lagrange Laboratory", - "type": "Child", - "id": "https://ror.org/02fdv8735" - }, - { - "label": "Observatoire Aquitain des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/03qma7a12" - }, - { - "label": "Observatoire Océanologique de Banyuls-sur-Mer", - "type": "Child", - "id": "https://ror.org/05gz4kr37" - }, - { - "label": "Observatoire des Sciences de l'Univers de la Réunion", - "type": "Child", - "id": "https://ror.org/05mv3tj33" - }, - { - "label": "Observatoires des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/040bzgy82" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Research Institute in Astrophysics and Planetology", - "type": "Child", - "id": "https://ror.org/05hm2ja81" - }, - { - "label": "Sytèmes de Référence Temps Espace", - "type": "Child", - "id": "https://ror.org/03tdef037" - }, - { - "label": "Villefranche Oceanographic Laboratory", - "type": "Child", - "id": "https://ror.org/05r5y6641" - } - ], - "addresses": [ - { - "lat": 48.79395, - "lng": 2.49323, - "state": null, - "state_code": null, - "city": "Saint-Maur-des-Fossés", - "geonames_city": { - "id": 2978179, - "city": "Saint-Maur-des-Fossés", - "geonames_admin1": { - "name": "Île-de-France", - "id": 3012874, - "ascii_name": "Île-de-France", - "code": "FR.11" - }, - "geonames_admin2": { - "name": "Val-de-Marne", - "id": 2971090, - "ascii_name": "Val-de-Marne", - "code": "FR.11.94" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.insu.cnrs.fr/en" - ], - "aliases": [], - "acronyms": [ - "INSU" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2154 1736" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100004617" - ] - }, - "GRID": { - "preferred": "grid.452348.c", - "all": "grid.452348.c" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json deleted file mode 100644 index 307a9cdb7..000000000 --- a/status-test/updates/04mczx267.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "id": "https://ror.org/04mczx267", - "name": "National Academy of Sciences of Armenia", - "email_address": "", - "ip_addresses": [], - "established": 1943, - "types": [ - "Government" - ], - "relationships": [ - { - "label": "Byurakan Astrophysical Observatory", - "type": "Child", - "id": "https://ror.org/0010mjy66" - }, - { - "label": "H.Buniatian Institute of Biochemistry", - "type": "Child", - "id": "https://ror.org/01gpc1r56" - }, - { - "label": "Institute for Informatics and Automation Problems", - "type": "Child", - "id": "https://ror.org/04a8k4p47" - }, - { - "label": "Institute for Physical Research", - "type": "Child", - "id": "https://ror.org/0187pag34" - }, - { - "label": "Institute of Archaeology and Ethnography", - "type": "Child", - "id": "https://ror.org/02af4h206" - }, - { - "label": "Institute of Botany", - "type": "Child", - "id": "https://ror.org/05mpgew40" - }, - { - "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", - "type": "Child", - "id": "https://ror.org/00588h422" - }, - { - "label": "Institute of Geological Sciences", - "type": "Child", - "id": "https://ror.org/03r6rhw30" - }, - { - "label": "Institute of Molecular Biology", - "type": "Child", - "id": "https://ror.org/03t8mqd25" - }, - { - "label": "Institute of Philosophy, Sociology and Law", - "type": "Child", - "id": "https://ror.org/02b7e7p97" - }, - { - "label": "Institute of Radiophysics and Electronics", - "type": "Child", - "id": "https://ror.org/051jgxz75" - }, - { - "label": "L. A. Orbeli Institute of Physiology NAS RA", - "type": "Child", - "id": "https://ror.org/02gse4n09" - }, - { - "label": "Scientific Center of Zoology and Hydroecology", - "type": "Child", - "id": "https://ror.org/00t5ymp38" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.sci.am/" - ], - "aliases": [ - "Armenian National Academy of Sciences" - ], - "acronyms": [ - "NAS RA" - ], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", - "labels": [ - { - "label": "Հայաստանի գիտությունների ազգային ակադեմիա", - "iso639": "hy" - } - ], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 1146 7878" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100008721" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "3712844" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2379496" - ] - }, - "GRID": { - "preferred": "grid.418094.0", - "all": "grid.418094.0" - } - } -} \ No newline at end of file diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json deleted file mode 100644 index 6a2fd873a..000000000 --- a/status-test/updates/0530qwm02.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "id": "https://ror.org/0530qwm02", - "name": "Earth and Environment Institute of Strasbourg", - "email_address": null, - "ip_addresses": [], - "established": 2021, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of Strasbourg", - "type": "Parent", - "id": "https://ror.org/00pg6eq24" - }, - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "National School for Water and Environmental Engineering", - "type": "Parent", - "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "https://ites.unistra.fr/" - ], - "aliases": [], - "acronyms": [ - "ITES" - ], - "status": "active", - "wikipedia_url": null, - "labels": [ - { - "label": "Institut Terre et Environnement de Strasbourg", - "iso639": "fr" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": {} -} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 15d58cde0..965c400fa 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Union Against Tuberculosis and Lung Disease", - "type": "Successor", - "id": "https://ror.org/037x4qk98" - } - ], + "relationships": [], "addresses": [ { "lat": 40.71427, From cb30517adf51cc68570978cf36100ae83388893f Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 14:55:59 +0000 Subject: [PATCH 40/49] Apply relationship changes to files --- status-test/new/04kjrxx07.json | 8 ++- status-test/new/051dbx029.json | 8 ++- status-test/updates/01br3aa17.json | 5 ++ status-test/updates/020rbyg91.json | 106 +++++++++++++++++++++++++++++ status-test/updates/02yqgb753.json | 91 +++++++++++++++++++++++++ status-test/updates/02zbz4g27.json | 8 ++- status-test/updates/03t0t6y08.json | 99 +++++++++++++++++++++++++++ status-test/updates/03y81da23.json | 5 ++ status-test/updates/03ybx0x41.json | 2 +- status-test/updates/0530qwm02.json | 97 ++++++++++++++++++++++++++ status-test/updates/05s7dz794.json | 8 ++- 11 files changed, 432 insertions(+), 5 deletions(-) create mode 100644 status-test/updates/020rbyg91.json create mode 100644 status-test/updates/02yqgb753.json create mode 100644 status-test/updates/03t0t6y08.json create mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b3efb5ff6..b4361343d 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,7 +26,13 @@ } }, "established": 1965, - "relationships": [], + "relationships": [ + { + "label": "University of California Division of Agriculture and Natural Resources", + "type": "Parent", + "id": "https://ror.org/03t0t6y08" + } + ], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index 4006fff10..d86a54e01 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,7 +21,13 @@ } }, "established": null, - "relationships": [], + "relationships": [ + { + "label": "National Institutes for Quantum and Radiological Science and Technology", + "type": "Parent", + "id": "https://ror.org/020rbyg91" + } + ], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 0bfd78b8b..3a2412e95 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,6 +12,11 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" + }, + { + "label": "Life Sciences International Postgraduate Educational Center", + "type": "Successor", + "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json new file mode 100644 index 000000000..ed3994f21 --- /dev/null +++ b/status-test/updates/020rbyg91.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/020rbyg91", + "name": "National Institutes for Quantum and Radiological Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kansai Photon Science Institute", + "type": "Child", + "id": "https://ror.org/051dbx029" + } + ], + "addresses": [ + { + "lat": 35.6, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Chiba", + "geonames_city": { + "id": 2113015, + "city": "Chiba", + "geonames_admin1": { + "name": "Chiba", + "id": 2113014, + "ascii_name": "Chiba", + "code": "JP.04" + }, + "geonames_admin2": { + "name": "Chiba-shi", + "id": 2113012, + "ascii_name": "Chiba-shi", + "code": "JP.04.2113012" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.qst.go.jp" + ], + "aliases": [], + "acronyms": [ + "QST" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "量子科学技術研究開発機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5900 003X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006327" + ] + }, + "Wikidata": { + "preferred": "Q24067079", + "all": [ + "Q24067079", + "Q39022389" + ] + }, + "GRID": { + "preferred": "grid.482503.8", + "all": "grid.482503.8" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json new file mode 100644 index 000000000..f7bd3c951 --- /dev/null +++ b/status-test/updates/02yqgb753.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yqgb753", + "name": "Life Sciences International Postgraduate Educational Center", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United Nations Educational, Scientific and Cultural Organization", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.biophys.am/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q77077134" + ] + }, + "GRID": { + "preferred": "grid.506497.9", + "all": "grid.506497.9" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index 74ac37638..d19ba3249 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Federation of Library Associations and Institutions", + "type": "Successor", + "id": "https://ror.org/026gatw61" + } + ], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json new file mode 100644 index 000000000..2dfb32e6c --- /dev/null +++ b/status-test/updates/03t0t6y08.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03t0t6y08", + "name": "University of California Division of Agriculture and Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Kearney Agricultural Research and Extension Center", + "type": "Child", + "id": "https://ror.org/04kjrxx07" + } + ], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://ucanr.edu/" + ], + "aliases": [], + "acronyms": [ + "ANR" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2166 8120" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006488" + ] + }, + "GRID": { + "preferred": "grid.300433.7", + "all": "grid.300433.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index b8260e9dc..f107f772a 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,6 +22,11 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Successor", + "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index 3d71fdc7d..e3cc32031 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Parent", + "type": "Successor", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json new file mode 100644 index 000000000..6a2fd873a --- /dev/null +++ b/status-test/updates/0530qwm02.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0530qwm02", + "name": "Earth and Environment Institute of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ites.unistra.fr/" + ], + "aliases": [], + "acronyms": [ + "ITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Terre et Environnement de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 965c400fa..15d58cde0 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Union Against Tuberculosis and Lung Disease", + "type": "Successor", + "id": "https://ror.org/037x4qk98" + } + ], "addresses": [ { "lat": 40.71427, From 11f112a9a3a6bb5539090db557d81b39d4165d23 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 14:57:15 +0000 Subject: [PATCH 41/49] Apply relationship changes to files --- status-test/updates/00pg6eq24.json | 313 +++++++++++++++++++++++ status-test/updates/02jhjzd11.json | 88 +++++++ status-test/updates/02nhqek82.json | 107 ++++++++ status-test/updates/02s6k3f65.json | 144 +++++++++++ status-test/updates/04k51q396.json | 107 ++++++++ status-test/updates/04kdfz702.json | 394 +++++++++++++++++++++++++++++ status-test/updates/04mczx267.json | 173 +++++++++++++ 7 files changed, 1326 insertions(+) create mode 100644 status-test/updates/00pg6eq24.json create mode 100644 status-test/updates/02jhjzd11.json create mode 100644 status-test/updates/02nhqek82.json create mode 100644 status-test/updates/02s6k3f65.json create mode 100644 status-test/updates/04k51q396.json create mode 100644 status-test/updates/04kdfz702.json create mode 100644 status-test/updates/04mczx267.json diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json new file mode 100644 index 000000000..8ecaea004 --- /dev/null +++ b/status-test/updates/00pg6eq24.json @@ -0,0 +1,313 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": "", + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", + "type": "Related", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Immune Response and Development in Insects", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/01epym565" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Biophotonics and Pharmacology", + "type": "Child", + "id": "https://ror.org/0032sc770" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "type": "Child", + "id": "https://ror.org/057916623" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Regenerative NanoMedicine", + "type": "Child", + "id": "https://ror.org/0032jvj22" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.en.unistra.fr/index.php?id=21707" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Université de Strasbourg", + "iso639": "fr" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2157 9291" + ] + }, + "FundRef": { + "preferred": "501100003768", + "all": [ + "501100003768", + "501100003998" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "722824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q157575" + ] + }, + "GRID": { + "preferred": "grid.11843.3f", + "all": "grid.11843.3f" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json new file mode 100644 index 000000000..30fb80bb8 --- /dev/null +++ b/status-test/updates/02jhjzd11.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02jhjzd11", + "name": "National School for Water and Environmental Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://engees.unistra.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ENGEES" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8652 7065" + ] + }, + "GRID": { + "preferred": "grid.466385.a", + "all": "grid.466385.a" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json new file mode 100644 index 000000000..f7b07f238 --- /dev/null +++ b/status-test/updates/02nhqek82.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02nhqek82", + "name": "University Children’s Hospital Basel", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.ukbb.ch/" + ], + "aliases": [], + "acronyms": [ + "UKBB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", + "labels": [ + { + "label": "Universitäts-Kinderspital beider Basel", + "iso639": "de" + }, + { + "label": "Hôpital universitaire pédiatrique des deux Bâle", + "iso639": "fr" + }, + { + "label": "University Children’s Hospital Basel", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0509 0981" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2496240" + ] + }, + "GRID": { + "preferred": "grid.412347.7", + "all": "grid.412347.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json new file mode 100644 index 000000000..3a6582644 --- /dev/null +++ b/status-test/updates/02s6k3f65.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/02s6k3f65", + "name": "University of Basel", + "email_address": "", + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Friedrich Miescher Institute", + "type": "Related", + "id": "https://ror.org/01bmjkv45" + }, + { + "label": "Swiss Tropical and Public Health Institute", + "type": "Related", + "id": "https://ror.org/03adhka07" + }, + { + "label": "University Children’s Hospital Basel", + "type": "Related", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Related", + "id": "https://ror.org/04k51q396" + }, + { + "label": "Universitäre Psychiatrische Kliniken Basel", + "type": "Related", + "id": "https://ror.org/05fw3jg78" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unibas.ch/de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", + "labels": [ + { + "label": "Universität Basel", + "iso639": "de" + }, + { + "label": "Université de Bâle", + "iso639": "fr" + }, + { + "label": "Università di Basilea", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0642" + ] + }, + "FundRef": { + "preferred": "100008375", + "all": [ + "100008375", + "501100008595", + "100008550" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "427614" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q372608" + ] + }, + "GRID": { + "preferred": "grid.6612.3", + "all": "grid.6612.3" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json new file mode 100644 index 000000000..6640f0adb --- /dev/null +++ b/status-test/updates/04k51q396.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04k51q396", + "name": "University Hospital of Basel", + "email_address": null, + "ip_addresses": [], + "established": 1083, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unispital-basel.ch/" + ], + "aliases": [], + "acronyms": [ + "USB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", + "labels": [ + { + "label": "Universitätsspital Basel", + "iso639": "de" + }, + { + "label": "University Hospital of Basel", + "iso639": "en" + }, + { + "label": "Hôpital universitaire de Bâle", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "40190980" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1689257" + ] + }, + "GRID": { + "preferred": "grid.410567.1", + "all": "grid.410567.1" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json new file mode 100644 index 000000000..7cc54310c --- /dev/null +++ b/status-test/updates/04kdfz702.json @@ -0,0 +1,394 @@ +{ + "id": "https://ror.org/04kdfz702", + "name": "Institut National des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Besançon Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/032582s48" + }, + { + "label": "Centre National de Recherches Météorologiques", + "type": "Child", + "id": "https://ror.org/004rej139" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Centre for Research and Teaching in Environmental Geoscience", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "GeoAzur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Geosciences Paris Sud", + "type": "Child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Haute-Provence Observatory", + "type": "Child", + "id": "https://ror.org/01gtjxz83" + }, + { + "label": "Institut UTINAM", + "type": "Child", + "id": "https://ror.org/02h0g9r59" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Child", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Interdisciplinary Laboratory for Continental Environments", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Sciences de l'Univers au Cerfacs", + "type": "Child", + "id": "https://ror.org/03ck9wz82" + }, + { + "label": "Laboratoire d'Aérologie", + "type": "Child", + "id": "https://ror.org/017d9yp59" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", + "type": "Child", + "id": "https://ror.org/03fgt5a62" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Laboratoire de Planétologie et Géodynamique de Nantes", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire de l'Atmosphère et des Cyclones", + "type": "Child", + "id": "https://ror.org/03wsemq03" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory Universe and Theories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "Child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratory of Microbial Oceanography", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Observatoires des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/040bzgy82" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Research Institute in Astrophysics and Planetology", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "Sytèmes de Référence Temps Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Villefranche Oceanographic Laboratory", + "type": "Child", + "id": "https://ror.org/05r5y6641" + } + ], + "addresses": [ + { + "lat": 48.79395, + "lng": 2.49323, + "state": null, + "state_code": null, + "city": "Saint-Maur-des-Fossés", + "geonames_city": { + "id": 2978179, + "city": "Saint-Maur-des-Fossés", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.insu.cnrs.fr/en" + ], + "aliases": [], + "acronyms": [ + "INSU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2154 1736" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004617" + ] + }, + "GRID": { + "preferred": "grid.452348.c", + "all": "grid.452348.c" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json new file mode 100644 index 000000000..307a9cdb7 --- /dev/null +++ b/status-test/updates/04mczx267.json @@ -0,0 +1,173 @@ +{ + "id": "https://ror.org/04mczx267", + "name": "National Academy of Sciences of Armenia", + "email_address": "", + "ip_addresses": [], + "established": 1943, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Byurakan Astrophysical Observatory", + "type": "Child", + "id": "https://ror.org/0010mjy66" + }, + { + "label": "H.Buniatian Institute of Biochemistry", + "type": "Child", + "id": "https://ror.org/01gpc1r56" + }, + { + "label": "Institute for Informatics and Automation Problems", + "type": "Child", + "id": "https://ror.org/04a8k4p47" + }, + { + "label": "Institute for Physical Research", + "type": "Child", + "id": "https://ror.org/0187pag34" + }, + { + "label": "Institute of Archaeology and Ethnography", + "type": "Child", + "id": "https://ror.org/02af4h206" + }, + { + "label": "Institute of Botany", + "type": "Child", + "id": "https://ror.org/05mpgew40" + }, + { + "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", + "type": "Child", + "id": "https://ror.org/00588h422" + }, + { + "label": "Institute of Geological Sciences", + "type": "Child", + "id": "https://ror.org/03r6rhw30" + }, + { + "label": "Institute of Molecular Biology", + "type": "Child", + "id": "https://ror.org/03t8mqd25" + }, + { + "label": "Institute of Philosophy, Sociology and Law", + "type": "Child", + "id": "https://ror.org/02b7e7p97" + }, + { + "label": "Institute of Radiophysics and Electronics", + "type": "Child", + "id": "https://ror.org/051jgxz75" + }, + { + "label": "L. A. Orbeli Institute of Physiology NAS RA", + "type": "Child", + "id": "https://ror.org/02gse4n09" + }, + { + "label": "Scientific Center of Zoology and Hydroecology", + "type": "Child", + "id": "https://ror.org/00t5ymp38" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.sci.am/" + ], + "aliases": [ + "Armenian National Academy of Sciences" + ], + "acronyms": [ + "NAS RA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", + "labels": [ + { + "label": "Հայաստանի գիտությունների ազգային ակադեմիա", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1146 7878" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008721" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3712844" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2379496" + ] + }, + "GRID": { + "preferred": "grid.418094.0", + "all": "grid.418094.0" + } + } +} \ No newline at end of file From 267237b955f3308d7a0208bde6408932d9100a8d Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 09:58:45 -0500 Subject: [PATCH 42/49] reset status-test files --- status-test/new/04kjrxx07.json | 8 +- status-test/new/051dbx029.json | 8 +- status-test/updates/00pg6eq24.json | 313 ----------------------- status-test/updates/01br3aa17.json | 5 - status-test/updates/020rbyg91.json | 106 -------- status-test/updates/02jhjzd11.json | 88 ------- status-test/updates/02nhqek82.json | 107 -------- status-test/updates/02s6k3f65.json | 144 ----------- status-test/updates/02yqgb753.json | 91 ------- status-test/updates/02zbz4g27.json | 8 +- status-test/updates/03t0t6y08.json | 99 -------- status-test/updates/03y81da23.json | 5 - status-test/updates/03ybx0x41.json | 2 +- status-test/updates/04k51q396.json | 107 -------- status-test/updates/04kdfz702.json | 394 ----------------------------- status-test/updates/04mczx267.json | 173 ------------- status-test/updates/0530qwm02.json | 97 ------- status-test/updates/05s7dz794.json | 8 +- 18 files changed, 5 insertions(+), 1758 deletions(-) delete mode 100644 status-test/updates/00pg6eq24.json delete mode 100644 status-test/updates/020rbyg91.json delete mode 100644 status-test/updates/02jhjzd11.json delete mode 100644 status-test/updates/02nhqek82.json delete mode 100644 status-test/updates/02s6k3f65.json delete mode 100644 status-test/updates/02yqgb753.json delete mode 100644 status-test/updates/03t0t6y08.json delete mode 100644 status-test/updates/04k51q396.json delete mode 100644 status-test/updates/04kdfz702.json delete mode 100644 status-test/updates/04mczx267.json delete mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b4361343d..b3efb5ff6 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,13 +26,7 @@ } }, "established": 1965, - "relationships": [ - { - "label": "University of California Division of Agriculture and Natural Resources", - "type": "Parent", - "id": "https://ror.org/03t0t6y08" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index d86a54e01..4006fff10 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,13 +21,7 @@ } }, "established": null, - "relationships": [ - { - "label": "National Institutes for Quantum and Radiological Science and Technology", - "type": "Parent", - "id": "https://ror.org/020rbyg91" - } - ], + "relationships": [], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json deleted file mode 100644 index 8ecaea004..000000000 --- a/status-test/updates/00pg6eq24.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "id": "https://ror.org/00pg6eq24", - "name": "University of Strasbourg", - "email_address": "", - "ip_addresses": [], - "established": 1538, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", - "type": "Related", - "id": "https://ror.org/02zwf7d57" - }, - { - "label": "Hôpitaux Universitaires de Strasbourg", - "type": "Related", - "id": "https://ror.org/04bckew43" - }, - { - "label": "Architecture et Réactivité de l'arN", - "type": "Child", - "id": "https://ror.org/03xmjtz19" - }, - { - "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", - "type": "Child", - "id": "https://ror.org/007xqmx73" - }, - { - "label": "Biomatériaux et Bioingénierie", - "type": "Child", - "id": "https://ror.org/05vcax154" - }, - { - "label": "Biotechnologie et Signalisation Cellulaire", - "type": "Child", - "id": "https://ror.org/047fwb937" - }, - { - "label": "Bureau for Economic Theory and Applications", - "type": "Child", - "id": "https://ror.org/05em8ne27" - }, - { - "label": "Fédération de Recherche PhotoVoltaïque", - "type": "Child", - "id": "https://ror.org/059fn5f50" - }, - { - "label": "Grapevine Health and Wine Quality", - "type": "Child", - "id": "https://ror.org/0291jbz11" - }, - { - "label": "Génétique Moléculaire Génomique Microbiologie", - "type": "Child", - "id": "https://ror.org/05n4nmn13" - }, - { - "label": "Hubert Curien Pluridisciplinary Institute", - "type": "Child", - "id": "https://ror.org/01g3mb532" - }, - { - "label": "Immune Response and Development in Insects", - "type": "Child", - "id": "https://ror.org/030przz70" - }, - { - "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", - "type": "Child", - "id": "https://ror.org/041v2hk34" - }, - { - "label": "Institut Charles Sadron", - "type": "Child", - "id": "https://ror.org/05whrjc31" - }, - { - "label": "Institut de Biologie Moléculaire des Plantes", - "type": "Child", - "id": "https://ror.org/01jm8fn98" - }, - { - "label": "Institut de Chimie de Strasbourg", - "type": "Child", - "id": "https://ror.org/00se7bf12" - }, - { - "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", - "type": "Child", - "id": "https://ror.org/02za18p66" - }, - { - "label": "Institut de Recherche Mathématique Avancée", - "type": "Child", - "id": "https://ror.org/02hwgty18" - }, - { - "label": "Institut de Science et d'Ingénierie Supramoléculaires", - "type": "Child", - "id": "https://ror.org/00xts7d02" - }, - { - "label": "Institute for Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/05qpmg879" - }, - { - "label": "Institute of Cellular and Integrative Neurosciences", - "type": "Child", - "id": "https://ror.org/025mhd687" - }, - { - "label": "Institute of Chemistry and Processes for Energy, Environment and Health", - "type": "Child", - "id": "https://ror.org/02tn0tm63" - }, - { - "label": "Institute of Genetics and Molecular and Cellular Biology", - "type": "Child", - "id": "https://ror.org/0015ws592" - }, - { - "label": "Laboratoire Image, Ville, Environnement", - "type": "Child", - "id": "https://ror.org/03x8fem72" - }, - { - "label": "Laboratoire de Chimie Moléculaire", - "type": "Child", - "id": "https://ror.org/01epym565" - }, - { - "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", - "type": "Child", - "id": "https://ror.org/01m71e459" - }, - { - "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", - "type": "Child", - "id": "https://ror.org/008pt4x48" - }, - { - "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", - "type": "Child", - "id": "https://ror.org/00k4e5n71" - }, - { - "label": "Laboratory for Therapeutic Innovation", - "type": "Child", - "id": "https://ror.org/02g4mxc89" - }, - { - "label": "Laboratory of Biophotonics and Pharmacology", - "type": "Child", - "id": "https://ror.org/0032sc770" - }, - { - "label": "Laboratory of Design and Application of Bioactive Molecules", - "type": "Child", - "id": "https://ror.org/00rh71z37" - }, - { - "label": "Laboratory of Molecular Anthropology and Image Synthesis", - "type": "Child", - "id": "https://ror.org/05w482q29" - }, - { - "label": "Maison Interuniversitaire des Sciences de l'Homme", - "type": "Child", - "id": "https://ror.org/02jm89840" - }, - { - "label": "Mitochondrie, stress oxydant et protection musculaire", - "type": "Child", - "id": "https://ror.org/05sc3hd12" - }, - { - "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", - "type": "Child", - "id": "https://ror.org/057916623" - }, - { - "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", - "type": "Child", - "id": "https://ror.org/00b4q1853" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Regenerative NanoMedicine", - "type": "Child", - "id": "https://ror.org/0032jvj22" - }, - { - "label": "Societies, Actors and Governement in Europe", - "type": "Child", - "id": "https://ror.org/00bhwwh42" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.en.unistra.fr/index.php?id=21707" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", - "labels": [ - { - "label": "Université de Strasbourg", - "iso639": "fr" - }, - { - "label": "Universität Straßburg", - "iso639": "de" - }, - { - "label": "Universitat d'Estrasburg", - "iso639": "ca" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2157 9291" - ] - }, - "FundRef": { - "preferred": "501100003768", - "all": [ - "501100003768", - "501100003998" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "722824" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q157575" - ] - }, - "GRID": { - "preferred": "grid.11843.3f", - "all": "grid.11843.3f" - } - } -} \ No newline at end of file diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 3a2412e95..0bfd78b8b 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,11 +12,6 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" - }, - { - "label": "Life Sciences International Postgraduate Educational Center", - "type": "Successor", - "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json deleted file mode 100644 index ed3994f21..000000000 --- a/status-test/updates/020rbyg91.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "id": "https://ror.org/020rbyg91", - "name": "National Institutes for Quantum and Radiological Science and Technology", - "email_address": null, - "ip_addresses": [], - "established": 2016, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "Kansai Photon Science Institute", - "type": "Child", - "id": "https://ror.org/051dbx029" - } - ], - "addresses": [ - { - "lat": 35.6, - "lng": 140.11667, - "state": null, - "state_code": null, - "city": "Chiba", - "geonames_city": { - "id": 2113015, - "city": "Chiba", - "geonames_admin1": { - "name": "Chiba", - "id": 2113014, - "ascii_name": "Chiba", - "code": "JP.04" - }, - "geonames_admin2": { - "name": "Chiba-shi", - "id": 2113012, - "ascii_name": "Chiba-shi", - "code": "JP.04.2113012" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 1861060 - } - ], - "links": [ - "https://www.qst.go.jp" - ], - "aliases": [], - "acronyms": [ - "QST" - ], - "status": "active", - "wikipedia_url": "", - "labels": [ - { - "label": "量子科学技術研究開発機構", - "iso639": "ja" - } - ], - "country": { - "country_name": "Japan", - "country_code": "JP" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 5900 003X" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100006327" - ] - }, - "Wikidata": { - "preferred": "Q24067079", - "all": [ - "Q24067079", - "Q39022389" - ] - }, - "GRID": { - "preferred": "grid.482503.8", - "all": "grid.482503.8" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json deleted file mode 100644 index 30fb80bb8..000000000 --- a/status-test/updates/02jhjzd11.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "id": "https://ror.org/02jhjzd11", - "name": "National School for Water and Environmental Engineering", - "email_address": null, - "ip_addresses": [], - "established": 1952, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Child", - "id": "https://ror.org/0530qwm02" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://engees.unistra.fr/en/" - ], - "aliases": [], - "acronyms": [ - "ENGEES" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0000 8652 7065" - ] - }, - "GRID": { - "preferred": "grid.466385.a", - "all": "grid.466385.a" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json deleted file mode 100644 index f7b07f238..000000000 --- a/status-test/updates/02nhqek82.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/02nhqek82", - "name": "University Children’s Hospital Basel", - "email_address": null, - "ip_addresses": [], - "established": 1862, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.ukbb.ch/" - ], - "aliases": [], - "acronyms": [ - "UKBB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", - "labels": [ - { - "label": "Universitäts-Kinderspital beider Basel", - "iso639": "de" - }, - { - "label": "Hôpital universitaire pédiatrique des deux Bâle", - "iso639": "fr" - }, - { - "label": "University Children’s Hospital Basel", - "iso639": "en" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 0509 0981" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2496240" - ] - }, - "GRID": { - "preferred": "grid.412347.7", - "all": "grid.412347.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json deleted file mode 100644 index 3a6582644..000000000 --- a/status-test/updates/02s6k3f65.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "id": "https://ror.org/02s6k3f65", - "name": "University of Basel", - "email_address": "", - "ip_addresses": [], - "established": 1460, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "Friedrich Miescher Institute", - "type": "Related", - "id": "https://ror.org/01bmjkv45" - }, - { - "label": "Swiss Tropical and Public Health Institute", - "type": "Related", - "id": "https://ror.org/03adhka07" - }, - { - "label": "University Children’s Hospital Basel", - "type": "Related", - "id": "https://ror.org/02nhqek82" - }, - { - "label": "University Hospital of Basel", - "type": "Related", - "id": "https://ror.org/04k51q396" - }, - { - "label": "Universitäre Psychiatrische Kliniken Basel", - "type": "Related", - "id": "https://ror.org/05fw3jg78" - }, - { - "label": "Swiss National Data and Service Center for the Humanities", - "type": "Related", - "id": "https://ror.org/047f01g80" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unibas.ch/de" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", - "labels": [ - { - "label": "Universität Basel", - "iso639": "de" - }, - { - "label": "Université de Bâle", - "iso639": "fr" - }, - { - "label": "Università di Basilea", - "iso639": "it" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0004 1937 0642" - ] - }, - "FundRef": { - "preferred": "100008375", - "all": [ - "100008375", - "501100008595", - "100008550" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "427614" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q372608" - ] - }, - "GRID": { - "preferred": "grid.6612.3", - "all": "grid.6612.3" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json deleted file mode 100644 index f7bd3c951..000000000 --- a/status-test/updates/02yqgb753.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "id": "https://ror.org/02yqgb753", - "name": "Life Sciences International Postgraduate Educational Center", - "email_address": null, - "ip_addresses": [], - "established": 1977, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "United Nations Educational, Scientific and Cultural Organization", - "type": "Parent", - "id": "https://ror.org/04h4z8k05" - }, - { - "label": "Biophysics Center of Armenian", - "type": "Predecessor", - "id": "https://ror.org/01br3aa17" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.biophys.am/" - ], - "aliases": [], - "acronyms": [], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "Wikidata": { - "preferred": null, - "all": [ - "Q77077134" - ] - }, - "GRID": { - "preferred": "grid.506497.9", - "all": "grid.506497.9" - } - } -} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index d19ba3249..74ac37638 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Federation of Library Associations and Institutions", - "type": "Successor", - "id": "https://ror.org/026gatw61" - } - ], + "relationships": [], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json deleted file mode 100644 index 2dfb32e6c..000000000 --- a/status-test/updates/03t0t6y08.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "id": "https://ror.org/03t0t6y08", - "name": "University of California Division of Agriculture and Natural Resources", - "email_address": null, - "ip_addresses": [], - "established": 1913, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of California System", - "type": "Parent", - "id": "https://ror.org/00pjdza24" - }, - { - "label": "Kearney Agricultural Research and Extension Center", - "type": "Child", - "id": "https://ror.org/04kjrxx07" - } - ], - "addresses": [ - { - "lat": 37.80437, - "lng": -122.2708, - "state": null, - "state_code": null, - "city": "Oakland", - "geonames_city": { - "id": 5378538, - "city": "Oakland", - "geonames_admin1": { - "name": "California", - "id": 5332921, - "ascii_name": "California", - "code": "US.CA" - }, - "geonames_admin2": { - "name": "Alameda", - "id": 5322745, - "ascii_name": "Alameda", - "code": "US.CA.001" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 6252001 - } - ], - "links": [ - "http://ucanr.edu/" - ], - "aliases": [], - "acronyms": [ - "ANR" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "United States", - "country_code": "US" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2166 8120" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100006488" - ] - }, - "GRID": { - "preferred": "grid.300433.7", - "all": "grid.300433.7" - } - } -} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index f107f772a..b8260e9dc 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,11 +22,6 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" - }, - { - "label": "Earth and Environment Institute of Strasbourg", - "type": "Successor", - "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index e3cc32031..3d71fdc7d 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Successor", + "type": "Parent", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json deleted file mode 100644 index 6640f0adb..000000000 --- a/status-test/updates/04k51q396.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "id": "https://ror.org/04k51q396", - "name": "University Hospital of Basel", - "email_address": null, - "ip_addresses": [], - "established": 1083, - "types": [ - "Healthcare" - ], - "relationships": [ - { - "label": "University of Basel", - "type": "Related", - "id": "https://ror.org/02s6k3f65" - } - ], - "addresses": [ - { - "lat": 47.55839, - "lng": 7.57327, - "state": null, - "state_code": null, - "city": "Basel", - "geonames_city": { - "id": 2661604, - "city": "Basel", - "geonames_admin1": { - "name": "Basel-City", - "id": 2661602, - "ascii_name": "Basel-City", - "code": "CH.BS" - }, - "geonames_admin2": { - "name": "Basel-Stadt", - "id": 6458763, - "ascii_name": "Basel-Stadt", - "code": "CH.BS.1200" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 2658434 - } - ], - "links": [ - "https://www.unispital-basel.ch/" - ], - "aliases": [], - "acronyms": [ - "USB" - ], - "status": "active", - "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", - "labels": [ - { - "label": "Universitätsspital Basel", - "iso639": "de" - }, - { - "label": "University Hospital of Basel", - "iso639": "en" - }, - { - "label": "Hôpital universitaire de Bâle", - "iso639": "fr" - } - ], - "country": { - "country_name": "Switzerland", - "country_code": "CH" - }, - "external_ids": { - "OrgRef": { - "preferred": null, - "all": [ - "40190980" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q1689257" - ] - }, - "GRID": { - "preferred": "grid.410567.1", - "all": "grid.410567.1" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json deleted file mode 100644 index 7cc54310c..000000000 --- a/status-test/updates/04kdfz702.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "id": "https://ror.org/04kdfz702", - "name": "Institut National des Sciences de l'Univers", - "email_address": null, - "ip_addresses": [], - "established": 1985, - "types": [ - "Facility" - ], - "relationships": [ - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "Astrophysique, Instrumentation et Modélisation", - "type": "Child", - "id": "https://ror.org/0015h8611" - }, - { - "label": "Besançon Astronomical Observatory", - "type": "Child", - "id": "https://ror.org/032582s48" - }, - { - "label": "Centre National de Recherches Météorologiques", - "type": "Child", - "id": "https://ror.org/004rej139" - }, - { - "label": "Centre d'Études Spatiales de la Biosphère", - "type": "Child", - "id": "https://ror.org/01225hq90" - }, - { - "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", - "type": "Child", - "id": "https://ror.org/01jt5ms28" - }, - { - "label": "Centre de Recherches Pétrographiques et Géochimiques", - "type": "Child", - "id": "https://ror.org/011nqat45" - }, - { - "label": "Centre for Astronomical Reseach of Lyon", - "type": "Child", - "id": "https://ror.org/0084x3h80" - }, - { - "label": "Centre for Research and Teaching in Environmental Geoscience", - "type": "Child", - "id": "https://ror.org/01pa4h393" - }, - { - "label": "Division Technique de I'INSU", - "type": "Child", - "id": "https://ror.org/01s48fc08" - }, - { - "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", - "type": "Child", - "id": "https://ror.org/01tsa0x55" - }, - { - "label": "Galaxies, Etoiles, Physique et Instrumentation", - "type": "Child", - "id": "https://ror.org/01920cw75" - }, - { - "label": "GeoAzur", - "type": "Child", - "id": "https://ror.org/05xtktk35" - }, - { - "label": "Geosciences Paris Sud", - "type": "Child", - "id": "https://ror.org/03s92mv58" - }, - { - "label": "Géosciences Environnement Toulouse", - "type": "Child", - "id": "https://ror.org/05k0qmv73" - }, - { - "label": "Géosciences Montpellier", - "type": "Child", - "id": "https://ror.org/024gts110" - }, - { - "label": "Géosciences Rennes", - "type": "Child", - "id": "https://ror.org/00vn0zc62" - }, - { - "label": "Haute-Provence Observatory", - "type": "Child", - "id": "https://ror.org/01gtjxz83" - }, - { - "label": "Institut UTINAM", - "type": "Child", - "id": "https://ror.org/02h0g9r59" - }, - { - "label": "Institut d'Astrophysique de Paris", - "type": "Child", - "id": "https://ror.org/022bnxw24" - }, - { - "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", - "type": "Child", - "id": "https://ror.org/002zc3t08" - }, - { - "label": "Institut de physique du globe de Paris", - "type": "Child", - "id": "https://ror.org/004gzqz66" - }, - { - "label": "Institut des Sciences de la Terre", - "type": "Child", - "id": "https://ror.org/01cf2sz15" - }, - { - "label": "Institut des Sciences de la Terre de Paris", - "type": "Child", - "id": "https://ror.org/00xagyq07" - }, - { - "label": "Institute of Environmental Geosciences", - "type": "Child", - "id": "https://ror.org/01wwcfa26" - }, - { - "label": "Interdisciplinary Laboratory for Continental Environments", - "type": "Child", - "id": "https://ror.org/05je79696" - }, - { - "label": "LIttoral, ENvironment and Societies", - "type": "Child", - "id": "https://ror.org/00r8amq78" - }, - { - "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", - "type": "Child", - "id": "https://ror.org/046cjf283" - }, - { - "label": "Laboratoire Magmas et Volcans", - "type": "Child", - "id": "https://ror.org/02vnq7240" - }, - { - "label": "Laboratoire Sciences de l'Univers au Cerfacs", - "type": "Child", - "id": "https://ror.org/03ck9wz82" - }, - { - "label": "Laboratoire d'Aérologie", - "type": "Child", - "id": "https://ror.org/017d9yp59" - }, - { - "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", - "type": "Child", - "id": "https://ror.org/05j3atf73" - }, - { - "label": "Laboratoire d'Optique Atmosphérique", - "type": "Child", - "id": "https://ror.org/02mdnkg28" - }, - { - "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", - "type": "Child", - "id": "https://ror.org/03fgt5a62" - }, - { - "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", - "type": "Child", - "id": "https://ror.org/04t89f389" - }, - { - "label": "Laboratoire de Géologie de l’École Normale Supérieure", - "type": "Child", - "id": "https://ror.org/05vg9cw43" - }, - { - "label": "Laboratoire de Météorologie Dynamique", - "type": "Child", - "id": "https://ror.org/000ehr937" - }, - { - "label": "Laboratoire de Météorologie Physique", - "type": "Child", - "id": "https://ror.org/03gz4y884" - }, - { - "label": "Laboratoire de Planétologie et Géodynamique de Nantes", - "type": "Child", - "id": "https://ror.org/04fm0sh33" - }, - { - "label": "Laboratoire de l'Atmosphère et des Cyclones", - "type": "Child", - "id": "https://ror.org/03wsemq03" - }, - { - "label": "Laboratoire des Sciences du Climat et de l'Environnement", - "type": "Child", - "id": "https://ror.org/03dsd0g48" - }, - { - "label": "Laboratoire d’Astrophysique de Marseille", - "type": "Child", - "id": "https://ror.org/00ssy9q55" - }, - { - "label": "Laboratoire d’Océanologie et de Géosciences", - "type": "Child", - "id": "https://ror.org/05m14rs93" - }, - { - "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", - "type": "Child", - "id": "https://ror.org/02chvqy57" - }, - { - "label": "Laboratory HydroSciences Montpellier", - "type": "Child", - "id": "https://ror.org/00aycez97" - }, - { - "label": "Laboratory Universe and Theories", - "type": "Child", - "id": "https://ror.org/00bbtde36" - }, - { - "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", - "type": "Child", - "id": "https://ror.org/03rtw5049" - }, - { - "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", - "type": "Child", - "id": "https://ror.org/01g5pq328" - }, - { - "label": "Laboratory of Astrophysics of Bordeaux", - "type": "Child", - "id": "https://ror.org/00yee3n23" - }, - { - "label": "Laboratory of Microbial Oceanography", - "type": "Child", - "id": "https://ror.org/05nk54s89" - }, - { - "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", - "type": "Child", - "id": "https://ror.org/02eptjh02" - }, - { - "label": "Laboratory of Subatomic Physics and Cosmology", - "type": "Child", - "id": "https://ror.org/03f0apy98" - }, - { - "label": "Lagrange Laboratory", - "type": "Child", - "id": "https://ror.org/02fdv8735" - }, - { - "label": "Observatoire Aquitain des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/03qma7a12" - }, - { - "label": "Observatoire Océanologique de Banyuls-sur-Mer", - "type": "Child", - "id": "https://ror.org/05gz4kr37" - }, - { - "label": "Observatoire des Sciences de l'Univers de la Réunion", - "type": "Child", - "id": "https://ror.org/05mv3tj33" - }, - { - "label": "Observatoires des Sciences de l'Univers", - "type": "Child", - "id": "https://ror.org/040bzgy82" - }, - { - "label": "Observatory of Strasbourg", - "type": "Child", - "id": "https://ror.org/04xsj2p07" - }, - { - "label": "Research Institute in Astrophysics and Planetology", - "type": "Child", - "id": "https://ror.org/05hm2ja81" - }, - { - "label": "Sytèmes de Référence Temps Espace", - "type": "Child", - "id": "https://ror.org/03tdef037" - }, - { - "label": "Villefranche Oceanographic Laboratory", - "type": "Child", - "id": "https://ror.org/05r5y6641" - } - ], - "addresses": [ - { - "lat": 48.79395, - "lng": 2.49323, - "state": null, - "state_code": null, - "city": "Saint-Maur-des-Fossés", - "geonames_city": { - "id": 2978179, - "city": "Saint-Maur-des-Fossés", - "geonames_admin1": { - "name": "Île-de-France", - "id": 3012874, - "ascii_name": "Île-de-France", - "code": "FR.11" - }, - "geonames_admin2": { - "name": "Val-de-Marne", - "id": 2971090, - "ascii_name": "Val-de-Marne", - "code": "FR.11.94" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "http://www.insu.cnrs.fr/en" - ], - "aliases": [], - "acronyms": [ - "INSU" - ], - "status": "active", - "wikipedia_url": "", - "labels": [], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 2154 1736" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "501100004617" - ] - }, - "GRID": { - "preferred": "grid.452348.c", - "all": "grid.452348.c" - } - } -} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json deleted file mode 100644 index 307a9cdb7..000000000 --- a/status-test/updates/04mczx267.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "id": "https://ror.org/04mczx267", - "name": "National Academy of Sciences of Armenia", - "email_address": "", - "ip_addresses": [], - "established": 1943, - "types": [ - "Government" - ], - "relationships": [ - { - "label": "Byurakan Astrophysical Observatory", - "type": "Child", - "id": "https://ror.org/0010mjy66" - }, - { - "label": "H.Buniatian Institute of Biochemistry", - "type": "Child", - "id": "https://ror.org/01gpc1r56" - }, - { - "label": "Institute for Informatics and Automation Problems", - "type": "Child", - "id": "https://ror.org/04a8k4p47" - }, - { - "label": "Institute for Physical Research", - "type": "Child", - "id": "https://ror.org/0187pag34" - }, - { - "label": "Institute of Archaeology and Ethnography", - "type": "Child", - "id": "https://ror.org/02af4h206" - }, - { - "label": "Institute of Botany", - "type": "Child", - "id": "https://ror.org/05mpgew40" - }, - { - "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", - "type": "Child", - "id": "https://ror.org/00588h422" - }, - { - "label": "Institute of Geological Sciences", - "type": "Child", - "id": "https://ror.org/03r6rhw30" - }, - { - "label": "Institute of Molecular Biology", - "type": "Child", - "id": "https://ror.org/03t8mqd25" - }, - { - "label": "Institute of Philosophy, Sociology and Law", - "type": "Child", - "id": "https://ror.org/02b7e7p97" - }, - { - "label": "Institute of Radiophysics and Electronics", - "type": "Child", - "id": "https://ror.org/051jgxz75" - }, - { - "label": "L. A. Orbeli Institute of Physiology NAS RA", - "type": "Child", - "id": "https://ror.org/02gse4n09" - }, - { - "label": "Scientific Center of Zoology and Hydroecology", - "type": "Child", - "id": "https://ror.org/00t5ymp38" - } - ], - "addresses": [ - { - "lat": 40.18111, - "lng": 44.51361, - "state": null, - "state_code": null, - "city": "Yerevan", - "geonames_city": { - "id": 616052, - "city": "Yerevan", - "geonames_admin1": { - "name": "Yerevan", - "id": 616051, - "ascii_name": "Yerevan", - "code": "AM.11" - }, - "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 174982 - } - ], - "links": [ - "http://www.sci.am/" - ], - "aliases": [ - "Armenian National Academy of Sciences" - ], - "acronyms": [ - "NAS RA" - ], - "status": "active", - "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", - "labels": [ - { - "label": "Հայաստանի գիտությունների ազգային ակադեմիա", - "iso639": "hy" - } - ], - "country": { - "country_name": "Armenia", - "country_code": "AM" - }, - "external_ids": { - "ISNI": { - "preferred": null, - "all": [ - "0000 0001 1146 7878" - ] - }, - "FundRef": { - "preferred": null, - "all": [ - "100008721" - ] - }, - "OrgRef": { - "preferred": null, - "all": [ - "3712844" - ] - }, - "Wikidata": { - "preferred": null, - "all": [ - "Q2379496" - ] - }, - "GRID": { - "preferred": "grid.418094.0", - "all": "grid.418094.0" - } - } -} \ No newline at end of file diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json deleted file mode 100644 index 6a2fd873a..000000000 --- a/status-test/updates/0530qwm02.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "id": "https://ror.org/0530qwm02", - "name": "Earth and Environment Institute of Strasbourg", - "email_address": null, - "ip_addresses": [], - "established": 2021, - "types": [ - "Education" - ], - "relationships": [ - { - "label": "University of Strasbourg", - "type": "Parent", - "id": "https://ror.org/00pg6eq24" - }, - { - "label": "French National Centre for Scientific Research", - "type": "Parent", - "id": "https://ror.org/02feahw73" - }, - { - "label": "National School for Water and Environmental Engineering", - "type": "Parent", - "id": "https://ror.org/02jhjzd11" - }, - { - "label": "Laboratory of Hydrology and Geochemistry", - "type": "Predecessor", - "id": "https://ror.org/03y81da23" - } - ], - "addresses": [ - { - "lat": 48.58392, - "lng": 7.74553, - "state": null, - "state_code": null, - "city": "Strasbourg", - "geonames_city": { - "id": 2973783, - "city": "Strasbourg", - "geonames_admin1": { - "name": "Grand Est", - "id": 11071622, - "ascii_name": "Grand Est", - "code": "FR.44" - }, - "geonames_admin2": { - "name": "Bas-Rhin", - "id": 3034720, - "ascii_name": "Bas-Rhin", - "code": "FR.44.67" - }, - "license": { - "attribution": "Data from geonames.org under a CC-BY 3.0 license", - "license": "http://creativecommons.org/licenses/by/3.0/" - }, - "nuts_level1": { - "name": null, - "code": null - }, - "nuts_level2": { - "name": null, - "code": null - }, - "nuts_level3": { - "name": null, - "code": null - } - }, - "postcode": null, - "primary": false, - "line": null, - "country_geonames_id": 3017382 - } - ], - "links": [ - "https://ites.unistra.fr/" - ], - "aliases": [], - "acronyms": [ - "ITES" - ], - "status": "active", - "wikipedia_url": null, - "labels": [ - { - "label": "Institut Terre et Environnement de Strasbourg", - "iso639": "fr" - } - ], - "country": { - "country_name": "France", - "country_code": "FR" - }, - "external_ids": {} -} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 15d58cde0..965c400fa 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,13 +7,7 @@ "types": [ "Nonprofit" ], - "relationships": [ - { - "label": "International Union Against Tuberculosis and Lung Disease", - "type": "Successor", - "id": "https://ror.org/037x4qk98" - } - ], + "relationships": [], "addresses": [ { "lat": 40.71427, From 75ca2d1990a5df5726e2e361945ffbed35cb0dba Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 15:00:16 +0000 Subject: [PATCH 43/49] Apply relationship changes to files --- status-test/new/04kjrxx07.json | 8 ++- status-test/new/051dbx029.json | 8 ++- status-test/updates/01br3aa17.json | 5 ++ status-test/updates/020rbyg91.json | 106 +++++++++++++++++++++++++++++ status-test/updates/02yqgb753.json | 91 +++++++++++++++++++++++++ status-test/updates/02zbz4g27.json | 8 ++- status-test/updates/03t0t6y08.json | 99 +++++++++++++++++++++++++++ status-test/updates/03y81da23.json | 5 ++ status-test/updates/03ybx0x41.json | 2 +- status-test/updates/0530qwm02.json | 97 ++++++++++++++++++++++++++ status-test/updates/05s7dz794.json | 8 ++- 11 files changed, 432 insertions(+), 5 deletions(-) create mode 100644 status-test/updates/020rbyg91.json create mode 100644 status-test/updates/02yqgb753.json create mode 100644 status-test/updates/03t0t6y08.json create mode 100644 status-test/updates/0530qwm02.json diff --git a/status-test/new/04kjrxx07.json b/status-test/new/04kjrxx07.json index b3efb5ff6..b4361343d 100644 --- a/status-test/new/04kjrxx07.json +++ b/status-test/new/04kjrxx07.json @@ -26,7 +26,13 @@ } }, "established": 1965, - "relationships": [], + "relationships": [ + { + "label": "University of California Division of Agriculture and Natural Resources", + "type": "Parent", + "id": "https://ror.org/03t0t6y08" + } + ], "email_address": null, "id": "https://ror.org/04kjrxx07", "labels": [], diff --git a/status-test/new/051dbx029.json b/status-test/new/051dbx029.json index 4006fff10..d86a54e01 100644 --- a/status-test/new/051dbx029.json +++ b/status-test/new/051dbx029.json @@ -21,7 +21,13 @@ } }, "established": null, - "relationships": [], + "relationships": [ + { + "label": "National Institutes for Quantum and Radiological Science and Technology", + "type": "Parent", + "id": "https://ror.org/020rbyg91" + } + ], "email_address": null, "id": "https://ror.org/051dbx029", "labels": [ diff --git a/status-test/updates/01br3aa17.json b/status-test/updates/01br3aa17.json index 0bfd78b8b..3a2412e95 100644 --- a/status-test/updates/01br3aa17.json +++ b/status-test/updates/01br3aa17.json @@ -12,6 +12,11 @@ "label": "National Academy of Sciences of Armenia", "type": "Parent", "id": "https://ror.org/04mczx267" + }, + { + "label": "Life Sciences International Postgraduate Educational Center", + "type": "Successor", + "id": "https://ror.org/02yqgb753" } ], "addresses": [ diff --git a/status-test/updates/020rbyg91.json b/status-test/updates/020rbyg91.json new file mode 100644 index 000000000..ed3994f21 --- /dev/null +++ b/status-test/updates/020rbyg91.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/020rbyg91", + "name": "National Institutes for Quantum and Radiological Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Kansai Photon Science Institute", + "type": "Child", + "id": "https://ror.org/051dbx029" + } + ], + "addresses": [ + { + "lat": 35.6, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Chiba", + "geonames_city": { + "id": 2113015, + "city": "Chiba", + "geonames_admin1": { + "name": "Chiba", + "id": 2113014, + "ascii_name": "Chiba", + "code": "JP.04" + }, + "geonames_admin2": { + "name": "Chiba-shi", + "id": 2113012, + "ascii_name": "Chiba-shi", + "code": "JP.04.2113012" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.qst.go.jp" + ], + "aliases": [], + "acronyms": [ + "QST" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "量子科学技術研究開発機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5900 003X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006327" + ] + }, + "Wikidata": { + "preferred": "Q24067079", + "all": [ + "Q24067079", + "Q39022389" + ] + }, + "GRID": { + "preferred": "grid.482503.8", + "all": "grid.482503.8" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02yqgb753.json b/status-test/updates/02yqgb753.json new file mode 100644 index 000000000..f7bd3c951 --- /dev/null +++ b/status-test/updates/02yqgb753.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yqgb753", + "name": "Life Sciences International Postgraduate Educational Center", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United Nations Educational, Scientific and Cultural Organization", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.biophys.am/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q77077134" + ] + }, + "GRID": { + "preferred": "grid.506497.9", + "all": "grid.506497.9" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02zbz4g27.json b/status-test/updates/02zbz4g27.json index 74ac37638..d19ba3249 100644 --- a/status-test/updates/02zbz4g27.json +++ b/status-test/updates/02zbz4g27.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Federation of Library Associations and Institutions", + "type": "Successor", + "id": "https://ror.org/026gatw61" + } + ], "addresses": [ { "lat": 49.24966, diff --git a/status-test/updates/03t0t6y08.json b/status-test/updates/03t0t6y08.json new file mode 100644 index 000000000..2dfb32e6c --- /dev/null +++ b/status-test/updates/03t0t6y08.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03t0t6y08", + "name": "University of California Division of Agriculture and Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Kearney Agricultural Research and Extension Center", + "type": "Child", + "id": "https://ror.org/04kjrxx07" + } + ], + "addresses": [ + { + "lat": 37.80437, + "lng": -122.2708, + "state": null, + "state_code": null, + "city": "Oakland", + "geonames_city": { + "id": 5378538, + "city": "Oakland", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://ucanr.edu/" + ], + "aliases": [], + "acronyms": [ + "ANR" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2166 8120" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006488" + ] + }, + "GRID": { + "preferred": "grid.300433.7", + "all": "grid.300433.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/03y81da23.json b/status-test/updates/03y81da23.json index b8260e9dc..f107f772a 100644 --- a/status-test/updates/03y81da23.json +++ b/status-test/updates/03y81da23.json @@ -22,6 +22,11 @@ "label": "University of Strasbourg", "type": "Parent", "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Successor", + "id": "https://ror.org/0530qwm02" } ], "addresses": [ diff --git a/status-test/updates/03ybx0x41.json b/status-test/updates/03ybx0x41.json index 3d71fdc7d..e3cc32031 100644 --- a/status-test/updates/03ybx0x41.json +++ b/status-test/updates/03ybx0x41.json @@ -20,7 +20,7 @@ }, { "label": "University of Basel", - "type": "Parent", + "type": "Successor", "id": "https://ror.org/02s6k3f65" } ], diff --git a/status-test/updates/0530qwm02.json b/status-test/updates/0530qwm02.json new file mode 100644 index 000000000..6a2fd873a --- /dev/null +++ b/status-test/updates/0530qwm02.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0530qwm02", + "name": "Earth and Environment Institute of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ites.unistra.fr/" + ], + "aliases": [], + "acronyms": [ + "ITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Terre et Environnement de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/status-test/updates/05s7dz794.json b/status-test/updates/05s7dz794.json index 965c400fa..15d58cde0 100644 --- a/status-test/updates/05s7dz794.json +++ b/status-test/updates/05s7dz794.json @@ -7,7 +7,13 @@ "types": [ "Nonprofit" ], - "relationships": [], + "relationships": [ + { + "label": "International Union Against Tuberculosis and Lung Disease", + "type": "Successor", + "id": "https://ror.org/037x4qk98" + } + ], "addresses": [ { "lat": 40.71427, From 96f7adc50ece5a5488370bc924cd8dae2c89ef85 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 15:01:15 +0000 Subject: [PATCH 44/49] Apply relationship changes to files --- status-test/updates/00pg6eq24.json | 313 +++++++++++++++++++++++ status-test/updates/02jhjzd11.json | 88 +++++++ status-test/updates/02nhqek82.json | 107 ++++++++ status-test/updates/02s6k3f65.json | 144 +++++++++++ status-test/updates/04k51q396.json | 107 ++++++++ status-test/updates/04kdfz702.json | 394 +++++++++++++++++++++++++++++ status-test/updates/04mczx267.json | 173 +++++++++++++ 7 files changed, 1326 insertions(+) create mode 100644 status-test/updates/00pg6eq24.json create mode 100644 status-test/updates/02jhjzd11.json create mode 100644 status-test/updates/02nhqek82.json create mode 100644 status-test/updates/02s6k3f65.json create mode 100644 status-test/updates/04k51q396.json create mode 100644 status-test/updates/04kdfz702.json create mode 100644 status-test/updates/04mczx267.json diff --git a/status-test/updates/00pg6eq24.json b/status-test/updates/00pg6eq24.json new file mode 100644 index 000000000..8ecaea004 --- /dev/null +++ b/status-test/updates/00pg6eq24.json @@ -0,0 +1,313 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": "", + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", + "type": "Related", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Immune Response and Development in Insects", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/01epym565" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Biophotonics and Pharmacology", + "type": "Child", + "id": "https://ror.org/0032sc770" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "type": "Child", + "id": "https://ror.org/057916623" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Regenerative NanoMedicine", + "type": "Child", + "id": "https://ror.org/0032jvj22" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.en.unistra.fr/index.php?id=21707" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Université de Strasbourg", + "iso639": "fr" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2157 9291" + ] + }, + "FundRef": { + "preferred": "501100003768", + "all": [ + "501100003768", + "501100003998" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "722824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q157575" + ] + }, + "GRID": { + "preferred": "grid.11843.3f", + "all": "grid.11843.3f" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02jhjzd11.json b/status-test/updates/02jhjzd11.json new file mode 100644 index 000000000..30fb80bb8 --- /dev/null +++ b/status-test/updates/02jhjzd11.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02jhjzd11", + "name": "National School for Water and Environmental Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://engees.unistra.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ENGEES" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8652 7065" + ] + }, + "GRID": { + "preferred": "grid.466385.a", + "all": "grid.466385.a" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02nhqek82.json b/status-test/updates/02nhqek82.json new file mode 100644 index 000000000..f7b07f238 --- /dev/null +++ b/status-test/updates/02nhqek82.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02nhqek82", + "name": "University Children’s Hospital Basel", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.ukbb.ch/" + ], + "aliases": [], + "acronyms": [ + "UKBB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", + "labels": [ + { + "label": "Universitäts-Kinderspital beider Basel", + "iso639": "de" + }, + { + "label": "Hôpital universitaire pédiatrique des deux Bâle", + "iso639": "fr" + }, + { + "label": "University Children’s Hospital Basel", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0509 0981" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2496240" + ] + }, + "GRID": { + "preferred": "grid.412347.7", + "all": "grid.412347.7" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02s6k3f65.json b/status-test/updates/02s6k3f65.json new file mode 100644 index 000000000..3a6582644 --- /dev/null +++ b/status-test/updates/02s6k3f65.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/02s6k3f65", + "name": "University of Basel", + "email_address": "", + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Friedrich Miescher Institute", + "type": "Related", + "id": "https://ror.org/01bmjkv45" + }, + { + "label": "Swiss Tropical and Public Health Institute", + "type": "Related", + "id": "https://ror.org/03adhka07" + }, + { + "label": "University Children’s Hospital Basel", + "type": "Related", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Related", + "id": "https://ror.org/04k51q396" + }, + { + "label": "Universitäre Psychiatrische Kliniken Basel", + "type": "Related", + "id": "https://ror.org/05fw3jg78" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unibas.ch/de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", + "labels": [ + { + "label": "Universität Basel", + "iso639": "de" + }, + { + "label": "Université de Bâle", + "iso639": "fr" + }, + { + "label": "Università di Basilea", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0642" + ] + }, + "FundRef": { + "preferred": "100008375", + "all": [ + "100008375", + "501100008595", + "100008550" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "427614" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q372608" + ] + }, + "GRID": { + "preferred": "grid.6612.3", + "all": "grid.6612.3" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04k51q396.json b/status-test/updates/04k51q396.json new file mode 100644 index 000000000..6640f0adb --- /dev/null +++ b/status-test/updates/04k51q396.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04k51q396", + "name": "University Hospital of Basel", + "email_address": null, + "ip_addresses": [], + "established": 1083, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unispital-basel.ch/" + ], + "aliases": [], + "acronyms": [ + "USB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", + "labels": [ + { + "label": "Universitätsspital Basel", + "iso639": "de" + }, + { + "label": "University Hospital of Basel", + "iso639": "en" + }, + { + "label": "Hôpital universitaire de Bâle", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "40190980" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1689257" + ] + }, + "GRID": { + "preferred": "grid.410567.1", + "all": "grid.410567.1" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04kdfz702.json b/status-test/updates/04kdfz702.json new file mode 100644 index 000000000..7cc54310c --- /dev/null +++ b/status-test/updates/04kdfz702.json @@ -0,0 +1,394 @@ +{ + "id": "https://ror.org/04kdfz702", + "name": "Institut National des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Besançon Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/032582s48" + }, + { + "label": "Centre National de Recherches Météorologiques", + "type": "Child", + "id": "https://ror.org/004rej139" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Centre for Research and Teaching in Environmental Geoscience", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "GeoAzur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Geosciences Paris Sud", + "type": "Child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Haute-Provence Observatory", + "type": "Child", + "id": "https://ror.org/01gtjxz83" + }, + { + "label": "Institut UTINAM", + "type": "Child", + "id": "https://ror.org/02h0g9r59" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Child", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Interdisciplinary Laboratory for Continental Environments", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Sciences de l'Univers au Cerfacs", + "type": "Child", + "id": "https://ror.org/03ck9wz82" + }, + { + "label": "Laboratoire d'Aérologie", + "type": "Child", + "id": "https://ror.org/017d9yp59" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", + "type": "Child", + "id": "https://ror.org/03fgt5a62" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Laboratoire de Planétologie et Géodynamique de Nantes", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire de l'Atmosphère et des Cyclones", + "type": "Child", + "id": "https://ror.org/03wsemq03" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory Universe and Theories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "Child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratory of Microbial Oceanography", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Observatoires des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/040bzgy82" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Research Institute in Astrophysics and Planetology", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "Sytèmes de Référence Temps Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Villefranche Oceanographic Laboratory", + "type": "Child", + "id": "https://ror.org/05r5y6641" + } + ], + "addresses": [ + { + "lat": 48.79395, + "lng": 2.49323, + "state": null, + "state_code": null, + "city": "Saint-Maur-des-Fossés", + "geonames_city": { + "id": 2978179, + "city": "Saint-Maur-des-Fossés", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.insu.cnrs.fr/en" + ], + "aliases": [], + "acronyms": [ + "INSU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2154 1736" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004617" + ] + }, + "GRID": { + "preferred": "grid.452348.c", + "all": "grid.452348.c" + } + } +} \ No newline at end of file diff --git a/status-test/updates/04mczx267.json b/status-test/updates/04mczx267.json new file mode 100644 index 000000000..307a9cdb7 --- /dev/null +++ b/status-test/updates/04mczx267.json @@ -0,0 +1,173 @@ +{ + "id": "https://ror.org/04mczx267", + "name": "National Academy of Sciences of Armenia", + "email_address": "", + "ip_addresses": [], + "established": 1943, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Byurakan Astrophysical Observatory", + "type": "Child", + "id": "https://ror.org/0010mjy66" + }, + { + "label": "H.Buniatian Institute of Biochemistry", + "type": "Child", + "id": "https://ror.org/01gpc1r56" + }, + { + "label": "Institute for Informatics and Automation Problems", + "type": "Child", + "id": "https://ror.org/04a8k4p47" + }, + { + "label": "Institute for Physical Research", + "type": "Child", + "id": "https://ror.org/0187pag34" + }, + { + "label": "Institute of Archaeology and Ethnography", + "type": "Child", + "id": "https://ror.org/02af4h206" + }, + { + "label": "Institute of Botany", + "type": "Child", + "id": "https://ror.org/05mpgew40" + }, + { + "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", + "type": "Child", + "id": "https://ror.org/00588h422" + }, + { + "label": "Institute of Geological Sciences", + "type": "Child", + "id": "https://ror.org/03r6rhw30" + }, + { + "label": "Institute of Molecular Biology", + "type": "Child", + "id": "https://ror.org/03t8mqd25" + }, + { + "label": "Institute of Philosophy, Sociology and Law", + "type": "Child", + "id": "https://ror.org/02b7e7p97" + }, + { + "label": "Institute of Radiophysics and Electronics", + "type": "Child", + "id": "https://ror.org/051jgxz75" + }, + { + "label": "L. A. Orbeli Institute of Physiology NAS RA", + "type": "Child", + "id": "https://ror.org/02gse4n09" + }, + { + "label": "Scientific Center of Zoology and Hydroecology", + "type": "Child", + "id": "https://ror.org/00t5ymp38" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.sci.am/" + ], + "aliases": [ + "Armenian National Academy of Sciences" + ], + "acronyms": [ + "NAS RA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", + "labels": [ + { + "label": "Հայաստանի գիտությունների ազգային ակադեմիա", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1146 7878" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008721" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3712844" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2379496" + ] + }, + "GRID": { + "preferred": "grid.418094.0", + "all": "grid.418094.0" + } + } +} \ No newline at end of file From 184072ee30f4ba8ac1b3bf8f80617494fb2b6c32 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Fri, 14 Oct 2022 15:05:06 +0000 Subject: [PATCH 45/49] Apply relationship changes to files --- status-test/updates/0097mvx21.json | 113 +++++++++++++++++++++++++++++ status-test/updates/020ye1821.json | 86 ++++++++++++++++++++++ status-test/updates/02388em19.json | 86 ++++++++++++++++++++++ 3 files changed, 285 insertions(+) create mode 100644 status-test/updates/0097mvx21.json create mode 100644 status-test/updates/020ye1821.json create mode 100644 status-test/updates/02388em19.json diff --git a/status-test/updates/0097mvx21.json b/status-test/updates/0097mvx21.json new file mode 100644 index 000000000..ee70d2056 --- /dev/null +++ b/status-test/updates/0097mvx21.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/0097mvx21", + "name": "Generalitat Valenciana", + "email_address": null, + "ip_addresses": [], + "established": 1418, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Conselleria de Sanitat Universal i Salut Pública", + "type": "Child", + "id": "https://ror.org/00pdx2849" + }, + { + "label": "Desertification Research Centre", + "type": "Child", + "id": "https://ror.org/01a631g06" + }, + { + "label": "Instituto Valenciano de Competitividad Empresarial", + "type": "Child", + "id": "https://ror.org/01svxr124" + }, + { + "label": "Ministry of Education, Research, Culture and Sport", + "type": "Child", + "id": "https://ror.org/01w104f98" + } + ], + "addresses": [ + { + "lat": 39.46975, + "lng": -0.37739, + "state": null, + "state_code": null, + "city": "Valencia", + "geonames_city": { + "id": 2509954, + "city": "Valencia", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Valencia", + "id": 2509951, + "ascii_name": "Valencia", + "code": "ES.60.V" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.gva.es/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Generalitat_Valenciana", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2353 2112" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100003359" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2477285" + ] + }, + "GRID": { + "preferred": "grid.424970.c", + "all": "grid.424970.c" + } + } +} \ No newline at end of file diff --git a/status-test/updates/020ye1821.json b/status-test/updates/020ye1821.json new file mode 100644 index 000000000..61d7d7ee8 --- /dev/null +++ b/status-test/updates/020ye1821.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/020ye1821", + "name": "Facebook (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Meta (United States)", + "type": "Parent", + "id": "https://ror.org/01zbnvs85" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.facebook.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Facebook", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30290745" + ] + }, + "GRID": { + "preferred": "grid.436437.1", + "all": "grid.436437.1" + } + } +} \ No newline at end of file diff --git a/status-test/updates/02388em19.json b/status-test/updates/02388em19.json new file mode 100644 index 000000000..4e657e816 --- /dev/null +++ b/status-test/updates/02388em19.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02388em19", + "name": "Facebook (Israel)", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Meta (United States)", + "type": "Parent", + "id": "https://ror.org/01zbnvs85" + } + ], + "addresses": [ + { + "lat": 32.08088, + "lng": 34.78057, + "state": null, + "state_code": null, + "city": "Tel Aviv", + "geonames_city": { + "id": 293397, + "city": "Tel Aviv", + "geonames_admin1": { + "name": "Tel Aviv", + "id": 293396, + "ascii_name": "Tel Aviv", + "code": "IL.05" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 294640 + } + ], + "links": [ + "https://www.facebook.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Facebook", + "labels": [], + "country": { + "country_name": "Israel", + "country_code": "IL" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q29123981" + ] + }, + "GRID": { + "preferred": "grid.474390.d", + "all": "grid.474390.d" + } + } +} \ No newline at end of file From 16e40e1a5feb392e0d3ac8a8a13ff7be5a6896c7 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Tue, 29 Nov 2022 17:07:17 -0600 Subject: [PATCH 46/49] add rc-v1.15 files for testing org status deployment --- rc-v1.15/000d53575.json | 99 ++++++ rc-v1.15/0010rmz96.json | 81 +++++ rc-v1.15/002c7gt96.json | 94 ++++++ rc-v1.15/005m60g68.json | 99 ++++++ rc-v1.15/008d1xp69.json | 119 +++++++ rc-v1.15/00em52312.json | 86 +++++ rc-v1.15/00g5hz655.json | 85 +++++ rc-v1.15/00gcd8h55.json | 82 +++++ rc-v1.15/00hr1eg19.json | 88 ++++++ rc-v1.15/00jr65m43.json | 96 ++++++ rc-v1.15/00k4n6c32.json | 218 +++++++++++++ rc-v1.15/00ndqxq51.json | 99 ++++++ rc-v1.15/00pdj0786.json | 74 +++++ rc-v1.15/00pg6eq24.json | 313 ++++++++++++++++++ rc-v1.15/00vbvha87.json | 118 +++++++ rc-v1.15/00vcb6036.json | 93 ++++++ rc-v1.15/00w0f8567.json | 105 ++++++ rc-v1.15/00wz65j53.json | 85 +++++ rc-v1.15/00xx8sn02.json | 88 ++++++ rc-v1.15/00yr30950.json | 85 +++++ rc-v1.15/00z1mf734.json | 85 +++++ rc-v1.15/010q4q527.json | 151 +++++++++ rc-v1.15/0114f6s34.json | 95 ++++++ rc-v1.15/013zcv680.json | 82 +++++ rc-v1.15/0158fxz86.json | 87 +++++ rc-v1.15/015zx6n37.json | 78 +++++ rc-v1.15/018h10037.json | 89 ++++++ rc-v1.15/01952nm43.json | 94 ++++++ rc-v1.15/01a5v8x09.json | 109 +++++++ rc-v1.15/01bkbaq61.json | 309 ++++++++++++++++++ rc-v1.15/01br3aa17.json | 85 +++++ rc-v1.15/01brr3227.json | 80 +++++ rc-v1.15/01c4rxk68.json | 119 +++++++ rc-v1.15/01cb0jg64.json | 102 ++++++ rc-v1.15/01d3ncs59.json | 91 ++++++ rc-v1.15/01epcny94.json | 113 +++++++ rc-v1.15/01gqqqf26.json | 93 ++++++ rc-v1.15/01hhn8329.json | 631 +++++++++++++++++++++++++++++++++++++ rc-v1.15/01hvx5h04.json | 92 ++++++ rc-v1.15/01kjjpm11.json | 87 +++++ rc-v1.15/01krpyz50.json | 85 +++++ rc-v1.15/01nvdnb36.json | 76 +++++ rc-v1.15/01p2ej961.json | 87 +++++ rc-v1.15/01sfh2b07.json | 86 +++++ rc-v1.15/01v6d0b34.json | 102 ++++++ rc-v1.15/01wtn4904.json | 93 ++++++ rc-v1.15/022mc7478.json | 98 ++++++ rc-v1.15/023enrs75.json | 86 +++++ rc-v1.15/024atcf19.json | 82 +++++ rc-v1.15/024j9sx72.json | 107 +++++++ rc-v1.15/024za3n32.json | 90 ++++++ rc-v1.15/02578qw11.json | 104 ++++++ rc-v1.15/025j82f41.json | 99 ++++++ rc-v1.15/0269ncv24.json | 105 ++++++ rc-v1.15/027p4qx72.json | 99 ++++++ rc-v1.15/028rzxs74.json | 91 ++++++ rc-v1.15/0292ym357.json | 93 ++++++ rc-v1.15/029vq7597.json | 82 +++++ rc-v1.15/02ag8cq23.json | 105 ++++++ rc-v1.15/02c8z2835.json | 99 ++++++ rc-v1.15/02cf1je33.json | 112 +++++++ rc-v1.15/02dyxwz31.json | 121 +++++++ rc-v1.15/02eh2pe44.json | 92 ++++++ rc-v1.15/02h60r346.json | 96 ++++++ rc-v1.15/02jhjzd11.json | 94 ++++++ rc-v1.15/02m3w2z38.json | 77 +++++ rc-v1.15/02nhqek82.json | 107 +++++++ rc-v1.15/02s6k3f65.json | 144 +++++++++ rc-v1.15/02skfsw40.json | 118 +++++++ rc-v1.15/02tz8r820.json | 89 ++++++ rc-v1.15/02vfaya75.json | 86 +++++ rc-v1.15/02yqgb753.json | 91 ++++++ rc-v1.15/02zbz4g27.json | 94 ++++++ rc-v1.15/0308s4091.json | 94 ++++++ rc-v1.15/032fvf508.json | 107 +++++++ rc-v1.15/034ymz395.json | 98 ++++++ rc-v1.15/035713c15.json | 79 +++++ rc-v1.15/035khj741.json | 93 ++++++ rc-v1.15/039jjcy66.json | 91 ++++++ rc-v1.15/039nazg33.json | 93 ++++++ rc-v1.15/03a0mw410.json | 88 ++++++ rc-v1.15/03av75f26.json | 87 +++++ rc-v1.15/03baec336.json | 106 +++++++ rc-v1.15/03bdvdc06.json | 82 +++++ rc-v1.15/03e76ya46.json | 112 +++++++ rc-v1.15/03hv1ad10.json | 105 ++++++ rc-v1.15/03jq8sq82.json | 85 +++++ rc-v1.15/03kw7j946.json | 93 ++++++ rc-v1.15/03q0p7c86.json | 89 ++++++ rc-v1.15/03r10zj06.json | 100 ++++++ rc-v1.15/03sbpja79.json | 115 +++++++ rc-v1.15/03st4v061.json | 97 ++++++ rc-v1.15/03wkq5991.json | 86 +++++ rc-v1.15/03x8rdd89.json | 87 +++++ rc-v1.15/03y81da23.json | 114 +++++++ rc-v1.15/03ybx0x41.json | 105 ++++++ rc-v1.15/03yfxw954.json | 99 ++++++ rc-v1.15/03yp23s77.json | 99 ++++++ rc-v1.15/0436nxt45.json | 88 ++++++ rc-v1.15/044cqdj35.json | 99 ++++++ rc-v1.15/0458dap48.json | 101 ++++++ rc-v1.15/045sjkt56.json | 93 ++++++ rc-v1.15/049922318.json | 92 ++++++ rc-v1.15/049ph2k85.json | 93 ++++++ rc-v1.15/04a7f6w43.json | 110 +++++++ rc-v1.15/04babsy72.json | 95 ++++++ rc-v1.15/04br0rs05.json | 100 ++++++ rc-v1.15/04dstfg97.json | 105 ++++++ rc-v1.15/04dy1nt28.json | 91 ++++++ rc-v1.15/04ec98z42.json | 112 +++++++ rc-v1.15/04efm0253.json | 94 ++++++ rc-v1.15/04fmf8z66.json | 99 ++++++ rc-v1.15/04g7y4303.json | 80 +++++ rc-v1.15/04jsh0z47.json | 97 ++++++ rc-v1.15/04k443z34.json | 99 ++++++ rc-v1.15/04k51q396.json | 119 +++++++ rc-v1.15/04kdfz702.json | 394 +++++++++++++++++++++++ rc-v1.15/04mczx267.json | 173 ++++++++++ rc-v1.15/04mknbs38.json | 91 ++++++ rc-v1.15/04n0vf235.json | 97 ++++++ rc-v1.15/04nsw4151.json | 134 ++++++++ rc-v1.15/04ps1tq95.json | 101 ++++++ rc-v1.15/04qzx1v96.json | 87 +++++ rc-v1.15/04sy8yh72.json | 92 ++++++ rc-v1.15/04wgk6417.json | 86 +++++ rc-v1.15/04yw47259.json | 92 ++++++ rc-v1.15/0524wfr80.json | 97 ++++++ rc-v1.15/0530qwm02.json | 97 ++++++ rc-v1.15/05350h943.json | 106 +++++++ rc-v1.15/053avzc18.json | 417 ++++++++++++++++++++++++ rc-v1.15/05524hb64.json | 87 +++++ rc-v1.15/05532r870.json | 81 +++++ rc-v1.15/055n47h92.json | 148 +++++++++ rc-v1.15/058mseb02.json | 82 +++++ rc-v1.15/058thb585.json | 93 ++++++ rc-v1.15/059a9e323.json | 91 ++++++ rc-v1.15/05esm3b90.json | 87 +++++ rc-v1.15/05fkxeh29.json | 92 ++++++ rc-v1.15/05hde1z07.json | 92 ++++++ rc-v1.15/05kzrmv33.json | 85 +++++ rc-v1.15/05mxean80.json | 93 ++++++ rc-v1.15/05pgxdd43.json | 120 +++++++ rc-v1.15/05r35r527.json | 91 ++++++ rc-v1.15/05rhyza23.json | 87 +++++ rc-v1.15/05rx1xe20.json | 92 ++++++ rc-v1.15/05s7dz794.json | 96 ++++++ rc-v1.15/05t2kwz20.json | 99 ++++++ rc-v1.15/05xmf1h49.json | 101 ++++++ rc-v1.15/relationships.csv | 102 ++++++ 149 files changed, 16123 insertions(+) create mode 100644 rc-v1.15/000d53575.json create mode 100644 rc-v1.15/0010rmz96.json create mode 100644 rc-v1.15/002c7gt96.json create mode 100644 rc-v1.15/005m60g68.json create mode 100644 rc-v1.15/008d1xp69.json create mode 100644 rc-v1.15/00em52312.json create mode 100644 rc-v1.15/00g5hz655.json create mode 100644 rc-v1.15/00gcd8h55.json create mode 100644 rc-v1.15/00hr1eg19.json create mode 100644 rc-v1.15/00jr65m43.json create mode 100644 rc-v1.15/00k4n6c32.json create mode 100644 rc-v1.15/00ndqxq51.json create mode 100644 rc-v1.15/00pdj0786.json create mode 100644 rc-v1.15/00pg6eq24.json create mode 100644 rc-v1.15/00vbvha87.json create mode 100644 rc-v1.15/00vcb6036.json create mode 100644 rc-v1.15/00w0f8567.json create mode 100644 rc-v1.15/00wz65j53.json create mode 100644 rc-v1.15/00xx8sn02.json create mode 100644 rc-v1.15/00yr30950.json create mode 100644 rc-v1.15/00z1mf734.json create mode 100644 rc-v1.15/010q4q527.json create mode 100644 rc-v1.15/0114f6s34.json create mode 100644 rc-v1.15/013zcv680.json create mode 100644 rc-v1.15/0158fxz86.json create mode 100644 rc-v1.15/015zx6n37.json create mode 100644 rc-v1.15/018h10037.json create mode 100644 rc-v1.15/01952nm43.json create mode 100644 rc-v1.15/01a5v8x09.json create mode 100644 rc-v1.15/01bkbaq61.json create mode 100644 rc-v1.15/01br3aa17.json create mode 100644 rc-v1.15/01brr3227.json create mode 100644 rc-v1.15/01c4rxk68.json create mode 100644 rc-v1.15/01cb0jg64.json create mode 100644 rc-v1.15/01d3ncs59.json create mode 100644 rc-v1.15/01epcny94.json create mode 100644 rc-v1.15/01gqqqf26.json create mode 100644 rc-v1.15/01hhn8329.json create mode 100644 rc-v1.15/01hvx5h04.json create mode 100644 rc-v1.15/01kjjpm11.json create mode 100644 rc-v1.15/01krpyz50.json create mode 100644 rc-v1.15/01nvdnb36.json create mode 100644 rc-v1.15/01p2ej961.json create mode 100644 rc-v1.15/01sfh2b07.json create mode 100644 rc-v1.15/01v6d0b34.json create mode 100644 rc-v1.15/01wtn4904.json create mode 100644 rc-v1.15/022mc7478.json create mode 100644 rc-v1.15/023enrs75.json create mode 100644 rc-v1.15/024atcf19.json create mode 100644 rc-v1.15/024j9sx72.json create mode 100644 rc-v1.15/024za3n32.json create mode 100644 rc-v1.15/02578qw11.json create mode 100644 rc-v1.15/025j82f41.json create mode 100644 rc-v1.15/0269ncv24.json create mode 100644 rc-v1.15/027p4qx72.json create mode 100644 rc-v1.15/028rzxs74.json create mode 100644 rc-v1.15/0292ym357.json create mode 100644 rc-v1.15/029vq7597.json create mode 100644 rc-v1.15/02ag8cq23.json create mode 100644 rc-v1.15/02c8z2835.json create mode 100644 rc-v1.15/02cf1je33.json create mode 100644 rc-v1.15/02dyxwz31.json create mode 100644 rc-v1.15/02eh2pe44.json create mode 100644 rc-v1.15/02h60r346.json create mode 100644 rc-v1.15/02jhjzd11.json create mode 100644 rc-v1.15/02m3w2z38.json create mode 100644 rc-v1.15/02nhqek82.json create mode 100644 rc-v1.15/02s6k3f65.json create mode 100644 rc-v1.15/02skfsw40.json create mode 100644 rc-v1.15/02tz8r820.json create mode 100644 rc-v1.15/02vfaya75.json create mode 100644 rc-v1.15/02yqgb753.json create mode 100644 rc-v1.15/02zbz4g27.json create mode 100644 rc-v1.15/0308s4091.json create mode 100644 rc-v1.15/032fvf508.json create mode 100644 rc-v1.15/034ymz395.json create mode 100644 rc-v1.15/035713c15.json create mode 100644 rc-v1.15/035khj741.json create mode 100644 rc-v1.15/039jjcy66.json create mode 100644 rc-v1.15/039nazg33.json create mode 100644 rc-v1.15/03a0mw410.json create mode 100644 rc-v1.15/03av75f26.json create mode 100644 rc-v1.15/03baec336.json create mode 100644 rc-v1.15/03bdvdc06.json create mode 100644 rc-v1.15/03e76ya46.json create mode 100644 rc-v1.15/03hv1ad10.json create mode 100644 rc-v1.15/03jq8sq82.json create mode 100644 rc-v1.15/03kw7j946.json create mode 100644 rc-v1.15/03q0p7c86.json create mode 100644 rc-v1.15/03r10zj06.json create mode 100644 rc-v1.15/03sbpja79.json create mode 100644 rc-v1.15/03st4v061.json create mode 100644 rc-v1.15/03wkq5991.json create mode 100644 rc-v1.15/03x8rdd89.json create mode 100644 rc-v1.15/03y81da23.json create mode 100644 rc-v1.15/03ybx0x41.json create mode 100644 rc-v1.15/03yfxw954.json create mode 100644 rc-v1.15/03yp23s77.json create mode 100644 rc-v1.15/0436nxt45.json create mode 100644 rc-v1.15/044cqdj35.json create mode 100644 rc-v1.15/0458dap48.json create mode 100644 rc-v1.15/045sjkt56.json create mode 100644 rc-v1.15/049922318.json create mode 100644 rc-v1.15/049ph2k85.json create mode 100644 rc-v1.15/04a7f6w43.json create mode 100644 rc-v1.15/04babsy72.json create mode 100644 rc-v1.15/04br0rs05.json create mode 100644 rc-v1.15/04dstfg97.json create mode 100644 rc-v1.15/04dy1nt28.json create mode 100644 rc-v1.15/04ec98z42.json create mode 100644 rc-v1.15/04efm0253.json create mode 100644 rc-v1.15/04fmf8z66.json create mode 100644 rc-v1.15/04g7y4303.json create mode 100644 rc-v1.15/04jsh0z47.json create mode 100644 rc-v1.15/04k443z34.json create mode 100644 rc-v1.15/04k51q396.json create mode 100644 rc-v1.15/04kdfz702.json create mode 100644 rc-v1.15/04mczx267.json create mode 100644 rc-v1.15/04mknbs38.json create mode 100644 rc-v1.15/04n0vf235.json create mode 100644 rc-v1.15/04nsw4151.json create mode 100644 rc-v1.15/04ps1tq95.json create mode 100644 rc-v1.15/04qzx1v96.json create mode 100644 rc-v1.15/04sy8yh72.json create mode 100644 rc-v1.15/04wgk6417.json create mode 100644 rc-v1.15/04yw47259.json create mode 100644 rc-v1.15/0524wfr80.json create mode 100644 rc-v1.15/0530qwm02.json create mode 100644 rc-v1.15/05350h943.json create mode 100644 rc-v1.15/053avzc18.json create mode 100644 rc-v1.15/05524hb64.json create mode 100644 rc-v1.15/05532r870.json create mode 100644 rc-v1.15/055n47h92.json create mode 100644 rc-v1.15/058mseb02.json create mode 100644 rc-v1.15/058thb585.json create mode 100644 rc-v1.15/059a9e323.json create mode 100644 rc-v1.15/05esm3b90.json create mode 100644 rc-v1.15/05fkxeh29.json create mode 100644 rc-v1.15/05hde1z07.json create mode 100644 rc-v1.15/05kzrmv33.json create mode 100644 rc-v1.15/05mxean80.json create mode 100644 rc-v1.15/05pgxdd43.json create mode 100644 rc-v1.15/05r35r527.json create mode 100644 rc-v1.15/05rhyza23.json create mode 100644 rc-v1.15/05rx1xe20.json create mode 100644 rc-v1.15/05s7dz794.json create mode 100644 rc-v1.15/05t2kwz20.json create mode 100644 rc-v1.15/05xmf1h49.json create mode 100644 rc-v1.15/relationships.csv diff --git a/rc-v1.15/000d53575.json b/rc-v1.15/000d53575.json new file mode 100644 index 000000000..3d151117b --- /dev/null +++ b/rc-v1.15/000d53575.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/000d53575", + "name": "Okazaki National Research Institutes", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Institutes of Natural Sciences", + "type": "Successor", + "id": "https://ror.org/055n47h92" + } + ], + "addresses": [ + { + "lat": 34.95, + "lng": 137.16667, + "state": null, + "state_code": null, + "city": "Okazaki", + "geonames_city": { + "id": 1854376, + "city": "Okazaki", + "geonames_admin1": { + "name": "Aichi", + "id": 1865694, + "ascii_name": "Aichi", + "code": "JP.01" + }, + "geonames_admin2": { + "name": "Okazaki-shi", + "id": 1854373, + "ascii_name": "Okazaki-shi", + "code": "JP.01.1854373" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.orion.ac.jp/index_e.html" + ], + "aliases": [], + "acronyms": [ + "ONRI" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "岡崎国立共同研究機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0577 8813" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100007130" + ] + }, + "GRID": { + "preferred": "grid.420030.5", + "all": "grid.420030.5" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0010rmz96.json b/rc-v1.15/0010rmz96.json new file mode 100644 index 000000000..4553ffbee --- /dev/null +++ b/rc-v1.15/0010rmz96.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/0010rmz96", + "name": "Yokkaichi University Junior College", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.96667, + "lng": 136.61667, + "state": null, + "state_code": null, + "city": "Yokkaichi", + "geonames_city": { + "id": 1848373, + "city": "Yokkaichi", + "geonames_admin1": { + "name": "Mie", + "id": 1857352, + "ascii_name": "Mie", + "code": "JP.23" + }, + "geonames_admin2": { + "name": "Yokkaichi", + "id": 1848370, + "ascii_name": "Yokkaichi", + "code": "JP.23.1848370" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.akatsuki.ed.jp/" + ], + "aliases": [ + "Akatsuki Gakuen Junior College" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "四日市大学短期大学部", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "preferred": "grid.471559.b", + "all": "grid.471559.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/002c7gt96.json b/rc-v1.15/002c7gt96.json new file mode 100644 index 000000000..dfa44d4b4 --- /dev/null +++ b/rc-v1.15/002c7gt96.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/002c7gt96", + "name": "Daniel Webster College", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.76537, + "lng": -71.46757, + "state": null, + "state_code": null, + "city": "Nashua", + "geonames_city": { + "id": 5090046, + "city": "Nashua", + "geonames_admin1": { + "name": "New Hampshire", + "id": 5090174, + "ascii_name": "New Hampshire", + "code": "US.NH" + }, + "geonames_admin2": { + "name": "Hillsborough", + "id": 5087463, + "ascii_name": "Hillsborough", + "code": "US.NH.011" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.dwc.edu/" + ], + "aliases": [], + "acronyms": [ + "DWC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Daniel_Webster_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0437 0738" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2685129" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5219048" + ] + }, + "GRID": { + "preferred": "grid.454678.c", + "all": "grid.454678.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/005m60g68.json b/rc-v1.15/005m60g68.json new file mode 100644 index 000000000..b2523d536 --- /dev/null +++ b/rc-v1.15/005m60g68.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/005m60g68", + "name": "Ministry of Research, Technology and Higher Education", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Research and Innovation Agency", + "type": "Successor", + "id": "https://ror.org/02hmjzt55" + } + ], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "name": "Jakarta", + "id": 1642907, + "ascii_name": "Jakarta", + "code": "ID.04" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [ + "http://international.ristekdikti.go.id/" + ], + "aliases": [], + "acronyms": [ + "DIKTI" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Research,_Technology_and_Higher_Education_(Indonesia)", + "labels": [ + { + "label": "Direktorat Jenderal Pendidikan Tinggi", + "iso639": "id" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2230 3529" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q14917355" + ] + }, + "GRID": { + "preferred": "grid.466915.9", + "all": "grid.466915.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/008d1xp69.json b/rc-v1.15/008d1xp69.json new file mode 100644 index 000000000..492cac3ba --- /dev/null +++ b/rc-v1.15/008d1xp69.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/008d1xp69", + "name": "Ministry of Economic Affairs and Employment", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Finnish Safety and Chemicals Agency", + "type": "Child", + "id": "https://ror.org/00eggnv95" + }, + { + "label": "Geological Survey of Finland", + "type": "Child", + "id": "https://ror.org/03vjnqy43" + }, + { + "label": "VTT Technical Research Centre of Finland", + "type": "Child", + "id": "https://ror.org/04b181w54" + } + ], + "addresses": [ + { + "lat": 60.16952, + "lng": 24.93545, + "state": null, + "state_code": null, + "city": "Helsinki", + "geonames_city": { + "id": 658225, + "city": "Helsinki", + "geonames_admin1": { + "name": "Uusimaa", + "id": 830709, + "ascii_name": "Uusimaa", + "code": "FI.01" + }, + "geonames_admin2": { + "name": "Helsinki", + "id": 9610677, + "ascii_name": "Helsinki", + "code": "FI.01.011" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 660013 + } + ], + "links": [ + "https://tem.fi/" + ], + "aliases": [], + "acronyms": [ + "TEM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Economic_Affairs_and_Employment_(Finland)", + "labels": [ + { + "label": "Työ- ja elinkeinoministeriö", + "iso639": "fi" + }, + { + "label": "Arbets- och näringsministeriet", + "iso639": "sv" + } + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0410 2557" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100001838" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q13765742" + ] + }, + "GRID": { + "preferred": "grid.436219.b", + "all": "grid.436219.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00em52312.json b/rc-v1.15/00em52312.json new file mode 100644 index 000000000..2beb7548d --- /dev/null +++ b/rc-v1.15/00em52312.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00em52312", + "name": "Canadian Polar Commission", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Polar Knowledge Canada", + "type": "Successor", + "id": "https://ror.org/00rfash91" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Ottawa", + "id": 8581623, + "ascii_name": "Ottawa", + "code": "CA.08.3506" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.polarcom.gc.ca/eng/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Canadian_Polar_Commission", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2106 4693" + ] + }, + "GRID": { + "preferred": "grid.465477.3", + "all": "grid.465477.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00g5hz655.json b/rc-v1.15/00g5hz655.json new file mode 100644 index 000000000..8e7e80d95 --- /dev/null +++ b/rc-v1.15/00g5hz655.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00g5hz655", + "name": "Bunka Womens University Muroran Junior College", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.31722, + "lng": 140.98806, + "state": null, + "state_code": null, + "city": "Muroran", + "geonames_city": { + "id": 2129101, + "city": "Muroran", + "geonames_admin1": { + "name": "Hokkaido", + "id": 2130037, + "ascii_name": "Hokkaido", + "code": "JP.12" + }, + "geonames_admin2": { + "name": "Muroran-shi", + "id": 2129098, + "ascii_name": "Muroran-shi", + "code": "JP.12.2129098" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://buntan-dousoukai.jp/buntan.html" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "文化女子大学室蘭短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2221 9677" + ] + }, + "GRID": { + "preferred": "grid.471556.4", + "all": "grid.471556.4" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00gcd8h55.json b/rc-v1.15/00gcd8h55.json new file mode 100644 index 000000000..82bab2759 --- /dev/null +++ b/rc-v1.15/00gcd8h55.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00gcd8h55", + "name": "The Nature Conservancy", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "The Nature Conservancy", + "type": "Successor", + "id": "https://ror.org/0563w1497" + } + ], + "addresses": [ + { + "lat": 4.60971, + "lng": -74.08175, + "state": null, + "state_code": null, + "city": "Bogotá", + "geonames_city": { + "id": 3688689, + "city": "Bogotá", + "geonames_admin1": { + "name": "Bogota D.C.", + "id": 3688685, + "ascii_name": "Bogota D.C.", + "code": "CO.34" + }, + "geonames_admin2": { + "name": "Bogotá D.C.", + "id": 9609540, + "ascii_name": "Bogotá D.C.", + "code": "CO.34.11001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3686110 + } + ], + "links": [ + "https://www.nature.org/en-us/" + ], + "aliases": [], + "acronyms": [ + "TNC" + ], + "status": "withdrawn", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Nature_Conservancy", + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "GRID": { + "preferred": "grid.502308.c", + "all": "grid.502308.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00hr1eg19.json b/rc-v1.15/00hr1eg19.json new file mode 100644 index 000000000..2f47d2173 --- /dev/null +++ b/rc-v1.15/00hr1eg19.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00hr1eg19", + "name": "Kangnam Sacred Heart Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hallym University Kangnam Sacred Heart Hospital", + "type": "Successor", + "id": "https://ror.org/00njt2653" + } + ], + "addresses": [ + { + "lat": 37.566, + "lng": 126.9784, + "state": null, + "state_code": null, + "city": "Seoul", + "geonames_city": { + "id": 1835848, + "city": "Seoul", + "geonames_admin1": { + "name": "Seoul", + "id": 1835847, + "ascii_name": "Seoul", + "code": "KR.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1835841 + } + ], + "links": [ + "https://eng.hallym.or.kr/ptp105c.asp" + ], + "aliases": [], + "acronyms": [ + "KSHH" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "South Korea", + "country_code": "KR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0647 432X" + ] + }, + "GRID": { + "preferred": "grid.464606.6", + "all": "grid.464606.6" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00jr65m43.json b/rc-v1.15/00jr65m43.json new file mode 100644 index 000000000..4922d43b7 --- /dev/null +++ b/rc-v1.15/00jr65m43.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/00jr65m43", + "name": "Institute of Plant Molecular Biology", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Biology Centre of the Czech Academy of Sciences", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "name": "Jihočeský kraj", + "id": 3339537, + "ascii_name": "Jihočeský kraj", + "code": "CZ.79" + }, + "geonames_admin2": { + "name": "České Budějovice District", + "id": 3077915, + "ascii_name": "České Budějovice District", + "code": "CZ.79.0311" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3077311 + } + ], + "links": [ + "http://www.umbr.cas.cz/?ln=en" + ], + "aliases": [ + "Ústav Molekulární Biologie Rostlin AV ČR" + ], + "acronyms": [ + "ÚMBR", + "IPMB" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0135 7552" + ] + }, + "GRID": { + "preferred": "grid.448362.f", + "all": "grid.448362.f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00k4n6c32.json b/rc-v1.15/00k4n6c32.json new file mode 100644 index 000000000..2739e6657 --- /dev/null +++ b/rc-v1.15/00k4n6c32.json @@ -0,0 +1,218 @@ +{ + "id": "https://ror.org/00k4n6c32", + "name": "European Commission", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "European Union", + "type": "Parent", + "id": "https://ror.org/019w4f821" + }, + { + "label": "Directorate General for Communications Networks, Content and Technology", + "type": "Child", + "id": "https://ror.org/00w9hey63" + }, + { + "label": "Directorate-General Joint Research Centre", + "type": "Child", + "id": "https://ror.org/04j5wtv36" + }, + { + "label": "Directorate-General for Economic and Financial Affairs", + "type": "Child", + "id": "https://ror.org/020v07z27" + }, + { + "label": "Directorate-General for Education, Youth, Sport and Culture", + "type": "Child", + "id": "https://ror.org/0481qb682" + }, + { + "label": "Directorate-General for Energy", + "type": "Child", + "id": "https://ror.org/04gkw9q47" + }, + { + "label": "Directorate-General for Health and Food Safety", + "type": "Child", + "id": "https://ror.org/0399w1j22" + }, + { + "label": "Directorate-General for International Cooperation and Development", + "type": "Child", + "id": "https://ror.org/050zqsm78" + }, + { + "label": "Directorate-General for Interpretation", + "type": "Child", + "id": "https://ror.org/03728bb41" + }, + { + "label": "Directorate-General for Justice and Consumers", + "type": "Child", + "id": "https://ror.org/046epvs68" + }, + { + "label": "Directorate-General for Maritime Affairs and Fisheries", + "type": "Child", + "id": "https://ror.org/04m4a9x26" + }, + { + "label": "Directorate-General for Neighbourhood and Enlargement Negotiations", + "type": "Child", + "id": "https://ror.org/00941sb79" + }, + { + "label": "Directorate-General for Research and Innovation", + "type": "Child", + "id": "https://ror.org/01ef4as46" + }, + { + "label": "Directorate-General for Taxation and Customs Union", + "type": "Child", + "id": "https://ror.org/026rh8977" + }, + { + "label": "Directorate-General for Trade", + "type": "Child", + "id": "https://ror.org/04h8m0888" + }, + { + "label": "European Research Council", + "type": "Child", + "id": "https://ror.org/0472cxd90" + }, + { + "label": "Eurostat", + "type": "Child", + "id": "https://ror.org/033d3q980" + }, + { + "label": "ERN Board of Member States", + "type": "Child", + "id": "https://ror.org/00r7apq26" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "name": "Brussels Capital", + "id": 2800867, + "ascii_name": "Brussels Capital", + "code": "BE.BRU" + }, + "geonames_admin2": { + "name": "Bruxelles-Capitale", + "id": 6693370, + "ascii_name": "Bruxelles-Capitale", + "code": "BE.BRU.BRU" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "http://ec.europa.eu/index_en.htm" + ], + "aliases": [], + "acronyms": [ + "EC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Commission", + "labels": [ + { + "label": "Europäische Kommission", + "iso639": "de" + }, + { + "label": "Commission européenne", + "iso639": "fr" + }, + { + "label": "Europese Commissie", + "iso639": "nl" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "FundRef": { + "preferred": "501100000780", + "all": [ + "501100000780", + "501100000783", + "501100008530", + "100011264", + "501100004895", + "100010661", + "501100004964", + "501100004963", + "501100000785", + "501100004965", + "501100000802", + "501100002207", + "501100000886", + "501100000905", + "501100004966", + "501100000896", + "501100000893", + "501100000891", + "501100000894", + "501100000887" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "9974" + ] + }, + "Wikidata": { + "preferred": "Q8880", + "all": [ + "Q8880", + "Q20855594" + ] + }, + "GRID": { + "preferred": "grid.270680.b", + "all": "grid.270680.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00ndqxq51.json b/rc-v1.15/00ndqxq51.json new file mode 100644 index 000000000..384c9cbf3 --- /dev/null +++ b/rc-v1.15/00ndqxq51.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00ndqxq51", + "name": "Kobe Shukugawa Gakuin University", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.6913, + "lng": 135.183, + "state": null, + "state_code": null, + "city": "Kobe", + "geonames_city": { + "id": 1859171, + "city": "Kobe", + "geonames_admin1": { + "name": "Hyōgo", + "id": 1862047, + "ascii_name": "Hyōgo", + "code": "JP.13" + }, + "geonames_admin2": { + "name": "Kōbe Shi", + "id": 1859161, + "ascii_name": "Kōbe Shi", + "code": "JP.13.1859161" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.kobeshukugawa.ac.jp/" + ], + "aliases": [], + "acronyms": [ + "KSGU" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kobe_Shukugawa_Gakuin_University", + "labels": [ + { + "label": "神戸夙川学院大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0375 6604" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "17003289" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6424332" + ] + }, + "GRID": { + "preferred": "grid.444135.3", + "all": "grid.444135.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00pdj0786.json b/rc-v1.15/00pdj0786.json new file mode 100644 index 000000000..3cbd3654b --- /dev/null +++ b/rc-v1.15/00pdj0786.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/00pdj0786", + "name": "Thunken", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Upper Garonne", + "id": 3013767, + "ascii_name": "Upper Garonne", + "code": "FR.76.31" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://thunken.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.508664.9", + "all": "grid.508664.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00pg6eq24.json b/rc-v1.15/00pg6eq24.json new file mode 100644 index 000000000..8ecaea004 --- /dev/null +++ b/rc-v1.15/00pg6eq24.json @@ -0,0 +1,313 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": "", + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Cognitive Neuropsychology and Physiopathology of Schizophrenia", + "type": "Related", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "Immune Response and Development in Insects", + "type": "Child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "Child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Charles Sadron", + "type": "Child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "Child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "Child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "Child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "Child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "Child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "Child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "Child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "Child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Laboratoire Image, Ville, Environnement", + "type": "Child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire de Chimie Moléculaire", + "type": "Child", + "id": "https://ror.org/01epym565" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "Child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire des Matériaux Surfaces et Procédés pour la Catalyse", + "type": "Child", + "id": "https://ror.org/008pt4x48" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "Child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "Child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Biophotonics and Pharmacology", + "type": "Child", + "id": "https://ror.org/0032sc770" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "Child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "Child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "Child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Mitochondrie, stress oxydant et protection musculaire", + "type": "Child", + "id": "https://ror.org/05sc3hd12" + }, + { + "label": "Mécanismes Centraux et Périphériques de la Neurodégénérescence", + "type": "Child", + "id": "https://ror.org/057916623" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "Child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Regenerative NanoMedicine", + "type": "Child", + "id": "https://ror.org/0032jvj22" + }, + { + "label": "Societies, Actors and Governement in Europe", + "type": "Child", + "id": "https://ror.org/00bhwwh42" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.en.unistra.fr/index.php?id=21707" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Université de Strasbourg", + "iso639": "fr" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2157 9291" + ] + }, + "FundRef": { + "preferred": "501100003768", + "all": [ + "501100003768", + "501100003998" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "722824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q157575" + ] + }, + "GRID": { + "preferred": "grid.11843.3f", + "all": "grid.11843.3f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00vbvha87.json b/rc-v1.15/00vbvha87.json new file mode 100644 index 000000000..b72d72cab --- /dev/null +++ b/rc-v1.15/00vbvha87.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/00vbvha87", + "name": "Public Health England", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Department of Health and Social Care", + "type": "Parent", + "id": "https://ror.org/03sbpja79" + }, + { + "label": "UK Health Security Agency", + "type": "Successor", + "id": "https://ror.org/018h10037" + }, + { + "label": "Office for Health Improvement and Disparities", + "type": "Successor", + "id": "https://ror.org/02m3w2z38" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.gov.uk/government/organisations/public-health-england" + ], + "aliases": [], + "acronyms": [ + "PHE" + ], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Public_Health_England", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5909 016X" + ] + }, + "FundRef": { + "preferred": "501100002141", + "all": [ + "501100002141", + "501100001306" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "35234838" + ] + }, + "Wikidata": { + "preferred": "Q7257402", + "all": [ + "Q7257402", + "Q5690635" + ] + }, + "GRID": { + "preferred": "grid.271308.f", + "all": "grid.271308.f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00vcb6036.json b/rc-v1.15/00vcb6036.json new file mode 100644 index 000000000..ac3b317c3 --- /dev/null +++ b/rc-v1.15/00vcb6036.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/00vcb6036", + "name": "Osaka Prefectural Medical Center", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.69374, + "lng": 135.50218, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "name": "Ōsaka", + "id": 1853904, + "ascii_name": "Ōsaka", + "code": "JP.32" + }, + "geonames_admin2": { + "name": "Osaka City", + "id": 1853897, + "ascii_name": "Osaka City", + "code": "JP.32.1853897" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.gh.opho.jp/" + ], + "aliases": [ + "Osaka General Medical Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "大阪急性期", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0378 3952" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q11441079" + ] + }, + "GRID": { + "preferred": "grid.416985.7", + "all": "grid.416985.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00w0f8567.json b/rc-v1.15/00w0f8567.json new file mode 100644 index 000000000..5b47f4eaa --- /dev/null +++ b/rc-v1.15/00w0f8567.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/00w0f8567", + "name": "Kyushu Tokai University", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Tokai University", + "type": "Successor", + "id": "https://ror.org/01p7qe739" + } + ], + "addresses": [ + { + "lat": 32.80589, + "lng": 130.69181, + "state": null, + "state_code": null, + "city": "Kumamoto", + "geonames_city": { + "id": 1858421, + "city": "Kumamoto", + "geonames_admin1": { + "name": "Kumamoto", + "id": 1858419, + "ascii_name": "Kumamoto", + "code": "JP.21" + }, + "geonames_admin2": { + "name": "Kumamoto Shi", + "id": 1858418, + "ascii_name": "Kumamoto Shi", + "code": "JP.21.1858418" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.ktokai-u.ac.jp/" + ], + "aliases": [ + "Kyūshū Tōkai Daigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Kyushu_Tokai_University", + "labels": [ + { + "label": "九州東海大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2112 6516" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "16032832" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6452850" + ] + }, + "GRID": { + "preferred": "grid.411243.1", + "all": "grid.411243.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00wz65j53.json b/rc-v1.15/00wz65j53.json new file mode 100644 index 000000000..dd4bd0432 --- /dev/null +++ b/rc-v1.15/00wz65j53.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00wz65j53", + "name": "JDSU (Switzerland)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "JDSU (United States)", + "type": "Parent", + "id": "https://ror.org/01a5v8x09" + }, + { + "label": "Viavi Solutions (United States)", + "type": "Successor", + "id": "https://ror.org/059a9e323" + } + ], + "addresses": [ + { + "lat": 46.94809, + "lng": 7.44744, + "state": null, + "state_code": null, + "city": "Bern", + "geonames_city": { + "id": 2661552, + "city": "Bern", + "geonames_admin1": { + "name": "Bern", + "id": 2661551, + "ascii_name": "Bern", + "code": "CH.BE" + }, + "geonames_admin2": { + "name": "Bern-Mittelland District", + "id": 8260142, + "ascii_name": "Bern-Mittelland District", + "code": "CH.BE.246" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.jdsu.com" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "preferred": "grid.426225.5", + "all": "grid.426225.5" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00xx8sn02.json b/rc-v1.15/00xx8sn02.json new file mode 100644 index 000000000..e314c00e6 --- /dev/null +++ b/rc-v1.15/00xx8sn02.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/00xx8sn02", + "name": "Art Institute of Colorado", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 39.73915, + "lng": -104.9847, + "state": null, + "state_code": null, + "city": "Denver", + "geonames_city": { + "id": 5419384, + "city": "Denver", + "geonames_admin1": { + "name": "Colorado", + "id": 5417618, + "ascii_name": "Colorado", + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Denver", + "id": 5419396, + "ascii_name": "Denver", + "code": "US.CO.031" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/denver" + ], + "aliases": [ + "Colorado Institute of Art" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Art_Institute_of_Colorado", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0634 3645" + ] + }, + "GRID": { + "preferred": "grid.465784.c", + "all": "grid.465784.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00yr30950.json b/rc-v1.15/00yr30950.json new file mode 100644 index 000000000..c9d214008 --- /dev/null +++ b/rc-v1.15/00yr30950.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00yr30950", + "name": "Caritas Junior College", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.43333, + "lng": 139.65, + "state": null, + "state_code": null, + "city": "Yokohama", + "geonames_city": { + "id": 1848354, + "city": "Yokohama", + "geonames_admin1": { + "name": "Kanagawa", + "id": 1860291, + "ascii_name": "Kanagawa", + "code": "JP.19" + }, + "geonames_admin2": { + "name": "Yokohama", + "id": 1848350, + "ascii_name": "Yokohama", + "code": "JP.19.1848350" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.caritas.ac.jp/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Caritas_Junior_College", + "labels": [ + { + "label": "カリタス女子短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0370 0328" + ] + }, + "GRID": { + "preferred": "grid.471564.5", + "all": "grid.471564.5" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/00z1mf734.json b/rc-v1.15/00z1mf734.json new file mode 100644 index 000000000..a5ebc97ca --- /dev/null +++ b/rc-v1.15/00z1mf734.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/00z1mf734", + "name": "Okayama Institute for Quantum Physics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.65, + "lng": 133.93333, + "state": null, + "state_code": null, + "city": "Okayama", + "geonames_city": { + "id": 1854383, + "city": "Okayama", + "geonames_admin1": { + "name": "Okayama", + "id": 1854381, + "ascii_name": "Okayama", + "code": "JP.31" + }, + "geonames_admin2": { + "name": "Okayama Shi", + "id": 1854380, + "ascii_name": "Okayama Shi", + "code": "JP.31.1854380" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.pref.okayama.jp/kikaku/kouryoushi/kouryoushi.htm" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "岡山光量子科学研究所", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9669 0851" + ] + }, + "GRID": { + "preferred": "grid.471955.b", + "all": "grid.471955.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/010q4q527.json b/rc-v1.15/010q4q527.json new file mode 100644 index 000000000..4b5772a64 --- /dev/null +++ b/rc-v1.15/010q4q527.json @@ -0,0 +1,151 @@ +{ + "id": "https://ror.org/010q4q527", + "name": "Government of Canada", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Agriculture and Agriculture-Food Canada", + "type": "Child", + "id": "https://ror.org/051dzs374" + }, + { + "label": "Canada Excellence Research Chairs", + "type": "Child", + "id": "https://ror.org/02tvrwm90" + }, + { + "label": "Canada Research Chairs", + "type": "Child", + "id": "https://ror.org/0517h6h17" + }, + { + "label": "Canadian Armed Forces", + "type": "Child", + "id": "https://ror.org/03rqcfv80" + }, + { + "label": "Defence Research and Development Canada", + "type": "Child", + "id": "https://ror.org/00hgy8d33" + }, + { + "label": "Environment and Climate Change Canada", + "type": "Child", + "id": "https://ror.org/026ny0e17" + }, + { + "label": "Ministry of Natural Resources and Forestry", + "type": "Child", + "id": "https://ror.org/02ntv3742" + }, + { + "label": "Networks of Centres of Excellence", + "type": "Child", + "id": "https://ror.org/02edexj13" + }, + { + "label": "Treasury Board of Canada Secretariat", + "type": "Child", + "id": "https://ror.org/01sj8qf84" + }, + { + "label": "Veterans Affairs Canada", + "type": "Child", + "id": "https://ror.org/01sz34q98" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Ottawa", + "id": 8581623, + "ascii_name": "Ottawa", + "code": "CA.08.3506" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.canada.ca/en/" + ], + "aliases": [ + "Her Majesty's Government", + "Gouvernement de Sa Majesté" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_Canada", + "labels": [ + { + "label": "Gouvernement du Canada", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0377 1994" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000023" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q422404" + ] + }, + "GRID": { + "preferred": "grid.451254.3", + "all": "grid.451254.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0114f6s34.json b/rc-v1.15/0114f6s34.json new file mode 100644 index 000000000..1b6c0a931 --- /dev/null +++ b/rc-v1.15/0114f6s34.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/0114f6s34", + "name": "College of Allied Medical Science Akita University", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Akita University", + "type": "Related", + "id": "https://ror.org/03hv1ad10" + } + ], + "addresses": [ + { + "lat": 39.71667, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Akita", + "geonames_city": { + "id": 2113126, + "city": "Akita", + "geonames_admin1": { + "name": "Akita", + "id": 2113124, + "ascii_name": "Akita", + "code": "JP.02" + }, + "geonames_admin2": { + "name": "Akita Shi", + "id": 2113122, + "ascii_name": "Akita Shi", + "code": "JP.02.2113122" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/College_of_Allied_Medical_Science_Akita_University", + "labels": [ + { + "label": "秋田大学医療技術短期大学部", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "30687654" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5146629" + ] + }, + "GRID": { + "preferred": "grid.411330.4", + "all": "grid.411330.4" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/013zcv680.json b/rc-v1.15/013zcv680.json new file mode 100644 index 000000000..3f4bb4549 --- /dev/null +++ b/rc-v1.15/013zcv680.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/013zcv680", + "name": "Oxford Medical Diagnostics (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.80448, + "lng": -1.31149, + "state": null, + "state_code": null, + "city": "Yarnton", + "geonames_city": { + "id": 2633412, + "city": "Yarnton", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Oxfordshire", + "id": 2640726, + "ascii_name": "Oxfordshire", + "code": "GB.ENG.K2" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.omdiagnostics.com/ui/content/Content.aspx?ID=12" + ], + "aliases": [], + "acronyms": [ + "OMD" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0498 1766" + ] + }, + "GRID": { + "preferred": "grid.437057.2", + "all": "grid.437057.2" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0158fxz86.json b/rc-v1.15/0158fxz86.json new file mode 100644 index 000000000..9b5ab5b6c --- /dev/null +++ b/rc-v1.15/0158fxz86.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/0158fxz86", + "name": "Canadian Wind Energy Association", + "email_address": "", + "ip_addresses": [], + "established": 1984, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Ottawa", + "id": 8581623, + "ascii_name": "Ottawa", + "code": "CA.08.3506" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://canwea.ca/" + ], + "aliases": [], + "acronyms": [ + "CanWEA" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Association canadienne de l’énergie éolienne", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9388 0596" + ] + }, + "GRID": { + "preferred": "grid.450553.2", + "all": "grid.450553.2" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/015zx6n37.json b/rc-v1.15/015zx6n37.json new file mode 100644 index 000000000..a32fe7455 --- /dev/null +++ b/rc-v1.15/015zx6n37.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/015zx6n37", + "name": "Perth Children's Hospital", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": -31.95224, + "lng": 115.8614, + "state": null, + "state_code": null, + "city": "Perth", + "geonames_city": { + "id": 2063523, + "city": "Perth", + "geonames_admin1": { + "name": "Western Australia", + "id": 2058645, + "ascii_name": "Western Australia", + "code": "AU.08" + }, + "geonames_admin2": { + "name": "Perth", + "id": 2063522, + "ascii_name": "Perth", + "code": "AU.08.57080" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://pch.health.wa.gov.au" + ], + "aliases": [], + "acronyms": [ + "PCH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Perth_Children%27s_Hospital", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q48769668", + "all": [ + "Q48769668" + ] + } + } +} \ No newline at end of file diff --git a/rc-v1.15/018h10037.json b/rc-v1.15/018h10037.json new file mode 100644 index 000000000..2cccec7ae --- /dev/null +++ b/rc-v1.15/018h10037.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/018h10037", + "name": "UK Health Security Agency", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Department of Health and Social Care", + "type": "Parent", + "id": "https://ror.org/03sbpja79" + }, + { + "label": "Public Health England", + "type": "Predecessor", + "id": "https://ror.org/00vbvha87" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.gov.uk/government/organisations/uk-health-security-agency" + ], + "aliases": [], + "acronyms": [ + "UKHSA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UK_Health_Security_Agency", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q104336949", + "all": [ + "Q104336949" + ] + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01952nm43.json b/rc-v1.15/01952nm43.json new file mode 100644 index 000000000..ca3691c6e --- /dev/null +++ b/rc-v1.15/01952nm43.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01952nm43", + "name": "New England Institute of Art", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 42.33176, + "lng": -71.12116, + "state": null, + "state_code": null, + "city": "Brookline", + "geonames_city": { + "id": 4931482, + "city": "Brookline", + "geonames_admin1": { + "name": "Massachusetts", + "id": 6254926, + "ascii_name": "Massachusetts", + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Norfolk", + "id": 4945455, + "ascii_name": "Norfolk", + "code": "US.MA.021" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/boston/" + ], + "aliases": [], + "acronyms": [ + "NEiA" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/New_England_Institute_of_Art", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0535 7949" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7007272" + ] + }, + "GRID": { + "preferred": "grid.465799.0", + "all": "grid.465799.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01a5v8x09.json b/rc-v1.15/01a5v8x09.json new file mode 100644 index 000000000..cf3a25cfc --- /dev/null +++ b/rc-v1.15/01a5v8x09.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/01a5v8x09", + "name": "JDSU (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "JDSU (Canada)", + "type": "Child", + "id": "https://ror.org/025j82f41" + }, + { + "label": "JDSU (China)", + "type": "Child", + "id": "https://ror.org/01d3ncs59" + }, + { + "label": "JDSU (Switzerland)", + "type": "Child", + "id": "https://ror.org/00wz65j53" + }, + { + "label": "Viavi Solutions (United States)", + "type": "Successor", + "id": "https://ror.org/059a9e323" + } + ], + "addresses": [ + { + "lat": 37.42827, + "lng": -121.90662, + "state": null, + "state_code": null, + "city": "Milpitas", + "geonames_city": { + "id": 5373327, + "city": "Milpitas", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Santa Clara", + "id": 5393021, + "ascii_name": "Santa Clara", + "code": "US.CA.085" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.JDSU.com" + ], + "aliases": [ + "JDS Uniphase" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/JDSU", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0452 7467" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3156887" + ] + }, + "GRID": { + "preferred": "grid.434040.7", + "all": "grid.434040.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01bkbaq61.json b/rc-v1.15/01bkbaq61.json new file mode 100644 index 000000000..5e5dfb8d7 --- /dev/null +++ b/rc-v1.15/01bkbaq61.json @@ -0,0 +1,309 @@ +{ + "id": "https://ror.org/01bkbaq61", + "name": "CERCA Institution", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre for Demographic Studies", + "type": "Child", + "id": "https://ror.org/02dm87055" + }, + { + "label": "International Center for Numerical Methods in Engineering", + "type": "Child", + "id": "https://ror.org/03ej8a714" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "Child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Child", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Centre de Recerca en Economia Internacional", + "type": "Child", + "id": "https://ror.org/0241avf06" + }, + { + "label": "Centre for Genomic Regulation", + "type": "Child", + "id": "https://ror.org/03wyzt892" + }, + { + "label": "Centre de Recerca Matemàtica", + "type": "Child", + "id": "https://ror.org/020s51w82" + }, + { + "label": "Centre Tecnològic Forestal de Catalunya", + "type": "Child", + "id": "https://ror.org/02tt2zf29" + }, + { + "label": "Centre Tecnologic De Telecomunicacions De Catalunya", + "type": "Child", + "id": "https://ror.org/001cwea56" + }, + { + "label": "i2CAT", + "type": "Child", + "id": "https://ror.org/02rkks755" + }, + { + "label": "Institute of Research and Innovation Parc Tauli", + "type": "Child", + "id": "https://ror.org/038c0gc18" + }, + { + "label": "Institute for Bioengineering of Catalonia", + "type": "Child", + "id": "https://ror.org/056h71x09" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "Child", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Institut Català d'Arqueologia Clàssica", + "type": "Child", + "id": "https://ror.org/04nwrc387" + }, + { + "label": "Institute of Photonic Sciences", + "type": "Child", + "id": "https://ror.org/03g5ew477" + }, + { + "label": "Institut Català d'Investigació Química", + "type": "Child", + "id": "https://ror.org/013j2zh96" + }, + { + "label": "Institut Català de Nanociència i Nanotecnologia", + "type": "Child", + "id": "https://ror.org/00k1qja49" + }, + { + "label": "Institut Català de Paleontologia Miquel Crusafont", + "type": "Child", + "id": "https://ror.org/04qeh2h86" + }, + { + "label": "Catalan Institute for Water Research", + "type": "Child", + "id": "https://ror.org/04zfaj906" + }, + { + "label": "Consorci Institut D'Investigacions Biomediques August Pi I Sunyer", + "type": "Child", + "id": "https://ror.org/054vayn55" + }, + { + "label": "Institut d'Investigació Biomédica de Bellvitge", + "type": "Child", + "id": "https://ror.org/0008xqs48" + }, + { + "label": "Institut d'Investigació Biomèdica de Girona", + "type": "Child", + "id": "https://ror.org/020yb3m85" + }, + { + "label": "Institut d'Estudis Espacials de Catalunya", + "type": "Child", + "id": "https://ror.org/00k6njn28" + }, + { + "label": "Institute for High Energy Physics", + "type": "Child", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "Institut d'Investigació en Ciències de la Salut Germans Trias i Pujol", + "type": "Child", + "id": "https://ror.org/03bzdww12" + }, + { + "label": "Institut d'Investigació Sanitària Pere Virgili", + "type": "Child", + "id": "https://ror.org/01av3a615" + }, + { + "label": "Institut Hospital del Mar d'Investigacions Mèdiques", + "type": "Child", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Catalan Institute of Human Paleoecology and Social Evolution", + "type": "Child", + "id": "https://ror.org/02zbs8663" + }, + { + "label": "Institute for Research in Biomedicine", + "type": "Child", + "id": "https://ror.org/01z1gye03" + }, + { + "label": "Biomedical Research Institute of Lleida", + "type": "Child", + "id": "https://ror.org/03mfyme49" + }, + { + "label": "Institut de Recerca de l'Energia de Catalunya", + "type": "Child", + "id": "https://ror.org/03b6f4629" + }, + { + "label": "Josep Carreras Leukaemia Research Institute", + "type": "Child", + "id": "https://ror.org/00btzwk36" + }, + { + "label": "IrsiCaixa", + "type": "Child", + "id": "https://ror.org/001synm23" + }, + { + "label": "Sant Joan de Déu Research Foundation", + "type": "Child", + "id": "https://ror.org/03g7nb016" + }, + { + "label": "Barcelona Institute for Global Health", + "type": "Child", + "id": "https://ror.org/03hjgt059" + }, + { + "label": "Vall d'Hebron Institut de Recerca", + "type": "Child", + "id": "https://ror.org/01d5vx451" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "Child", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Fundació Clínic per a la Recerca Biomèdica", + "type": "Child", + "id": "https://ror.org/03mw46n78" + }, + { + "label": "Fundació Privada Clínic per a La Recerca Biomèdica", + "type": "Child", + "id": "https://ror.org/018ndmv91" + }, + { + "label": "Agrotecnio - Centre for Food and Agriculture Research", + "type": "Child", + "id": "https://ror.org/04wvm7462" + }, + { + "label": "Computer Vision Center", + "type": "Child", + "id": "https://ror.org/00s0nnj93" + }, + { + "label": "Catalan Institute for Cultural Heritage Research", + "type": "Child", + "id": "https://ror.org/04xxayh10" + }, + { + "label": "Sant Pau Institute for Biomedical Research", + "type": "Child", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "Child", + "id": "https://ror.org/054xx3904" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://cerca.cat" + ], + "aliases": [], + "acronyms": [ + "CERCA", + "I-CERCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CERCA_Institute", + "labels": [ + { + "label": "Institució CERCA - Centres de Recerca de Catalunya", + "iso639": "ca" + }, + { + "label": "Fundació Institució dels Centres de Recerca de Catalunya", + "iso639": "ca" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q30100395", + "all": [ + "Q30100395" + ] + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01br3aa17.json b/rc-v1.15/01br3aa17.json new file mode 100644 index 000000000..3a2412e95 --- /dev/null +++ b/rc-v1.15/01br3aa17.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01br3aa17", + "name": "Biophysics Center of Armenian", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Academy of Sciences of Armenia", + "type": "Parent", + "id": "https://ror.org/04mczx267" + }, + { + "label": "Life Sciences International Postgraduate Educational Center", + "type": "Successor", + "id": "https://ror.org/02yqgb753" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://ipia.sci.am/~biophys/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "GRID": { + "preferred": "grid.429569.5", + "all": "grid.429569.5" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01brr3227.json b/rc-v1.15/01brr3227.json new file mode 100644 index 000000000..6feef6a0f --- /dev/null +++ b/rc-v1.15/01brr3227.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01brr3227", + "name": "Swedish e-Science Research Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Swedish e-Science Research Centre", + "type": "Successor", + "id": "https://ror.org/01e59yk92" + } + ], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "name": "Stockholm", + "id": 2673722, + "ascii_name": "Stockholm", + "code": "SE.26" + }, + "geonames_admin2": { + "name": "Stockholm Municipality", + "id": 2673723, + "ascii_name": "Stockholm Municipality", + "code": "SE.26.0180" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2661886 + } + ], + "links": [ + "http://www.e-science.se/" + ], + "aliases": [], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "GRID": { + "preferred": "grid.484674.d", + "all": "grid.484674.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01c4rxk68.json b/rc-v1.15/01c4rxk68.json new file mode 100644 index 000000000..16f695616 --- /dev/null +++ b/rc-v1.15/01c4rxk68.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/01c4rxk68", + "name": "Advanced Materials and BioEngineering Research", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Dublin City University", + "type": "Parent", + "id": "https://ror.org/04a1a1e81" + }, + { + "label": "Ollscoil na Gaillimhe – University of Galway", + "type": "Parent", + "id": "https://ror.org/03bea9k73" + }, + { + "label": "Royal College of Surgeons in Ireland", + "type": "Parent", + "id": "https://ror.org/01hxy9878" + }, + { + "label": "Trinity College Dublin", + "type": "Parent", + "id": "https://ror.org/02tyrky19" + }, + { + "label": "University College Cork", + "type": "Parent", + "id": "https://ror.org/03265fv13" + }, + { + "label": "University of Limerick", + "type": "Parent", + "id": "https://ror.org/00a0n9e72" + } + ], + "addresses": [ + { + "lat": 53.33306, + "lng": -6.24889, + "state": null, + "state_code": null, + "city": "Dublin", + "geonames_city": { + "id": 2964574, + "city": "Dublin", + "geonames_admin1": { + "name": "Leinster", + "id": 7521314, + "ascii_name": "Leinster", + "code": "IE.L" + }, + "geonames_admin2": { + "name": "Dublin City", + "id": 7778677, + "ascii_name": "Dublin City", + "code": "IE.L.33" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "http://ambercentre.ie/" + ], + "aliases": [], + "acronyms": [ + "AMBER" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0382 829X", + "all": [ + "0000 0005 0382 829X" + ] + }, + "FundRef": { + "preferred": "501100020270", + "all": [ + "501100020270" + ] + }, + "GRID": { + "preferred": "grid.509962.1", + "all": "grid.509962.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01cb0jg64.json b/rc-v1.15/01cb0jg64.json new file mode 100644 index 000000000..c410a34d4 --- /dev/null +++ b/rc-v1.15/01cb0jg64.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01cb0jg64", + "name": "Art Institute of Portland", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 45.52345, + "lng": -122.67621, + "state": null, + "state_code": null, + "city": "Portland", + "geonames_city": { + "id": 5746545, + "city": "Portland", + "geonames_admin1": { + "name": "Oregon", + "id": 5744337, + "ascii_name": "Oregon", + "code": "US.OR" + }, + "geonames_admin2": { + "name": "Multnomah", + "id": 5742126, + "ascii_name": "Multnomah", + "code": "US.OR.051" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/portland" + ], + "aliases": [ + "Bassist College" + ], + "acronyms": [ + "AI" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Art_Institute_of_Portland", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0508 870X" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3936289" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3444443" + ] + }, + "GRID": { + "preferred": "grid.447325.3", + "all": "grid.447325.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01d3ncs59.json b/rc-v1.15/01d3ncs59.json new file mode 100644 index 000000000..3030a68d5 --- /dev/null +++ b/rc-v1.15/01d3ncs59.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01d3ncs59", + "name": "JDSU (China)", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "JDSU (United States)", + "type": "Parent", + "id": "https://ror.org/01a5v8x09" + }, + { + "label": "Viavi Solutions (United States)", + "type": "Successor", + "id": "https://ror.org/059a9e323" + } + ], + "addresses": [ + { + "lat": 22.54554, + "lng": 114.0683, + "state": null, + "state_code": null, + "city": "Shenzhen", + "geonames_city": { + "id": 1795565, + "city": "Shenzhen", + "geonames_admin1": { + "name": "Guangdong", + "id": 1809935, + "ascii_name": "Guangdong", + "code": "CN.30" + }, + "geonames_admin2": { + "name": "Shenzhen", + "id": 1795563, + "ascii_name": "Shenzhen", + "code": "CN.30.4403" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.viavisolutions.com/en-us" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/JDSU", + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30273356" + ] + }, + "GRID": { + "preferred": "grid.481661.c", + "all": "grid.481661.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01epcny94.json b/rc-v1.15/01epcny94.json new file mode 100644 index 000000000..92c96a5a2 --- /dev/null +++ b/rc-v1.15/01epcny94.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/01epcny94", + "name": "Government of Western Australia Department of Health", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of Western Australia", + "type": "Parent", + "id": "https://ror.org/00wqdbc63" + }, + { + "label": "BreastScreen WA", + "type": "Child", + "id": "https://ror.org/030fs7375" + }, + { + "label": "North Metropolitan Health Service", + "type": "Child", + "id": "https://ror.org/043rdsw72" + } + ], + "addresses": [ + { + "lat": -31.95872, + "lng": 115.87109, + "state": null, + "state_code": null, + "city": "East Perth", + "geonames_city": { + "id": 8335007, + "city": "East Perth", + "geonames_admin1": { + "name": "Western Australia", + "id": 2058645, + "ascii_name": "Western Australia", + "code": "AU.08" + }, + "geonames_admin2": { + "name": "Perth", + "id": 2063522, + "ascii_name": "Perth", + "code": "AU.08.57080" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "http://ww2.health.wa.gov.au/" + ], + "aliases": [ + "Western Australia Department of Health", + "Department of Health", + "WA Health" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Health_(Western_Australia)", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0453 2856" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000961", + "501100006065" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q19872844" + ] + }, + "GRID": { + "preferred": "grid.413880.6", + "all": "grid.413880.6" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01gqqqf26.json b/rc-v1.15/01gqqqf26.json new file mode 100644 index 000000000..41105daa8 --- /dev/null +++ b/rc-v1.15/01gqqqf26.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01gqqqf26", + "name": "Mylan (South Africa)", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (United States)", + "type": "Parent", + "id": "https://ror.org/04nsw4151" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": -26.08909, + "lng": 28.16534, + "state": null, + "state_code": null, + "city": "Modderfontein", + "geonames_city": { + "id": 975144, + "city": "Modderfontein", + "geonames_admin1": { + "name": "Gauteng", + "id": 1085594, + "ascii_name": "Gauteng", + "code": "ZA.06" + }, + "geonames_admin2": { + "name": "City of Johannesburg Metropolitan Municipality", + "id": 8347354, + "ascii_name": "City of Johannesburg Metropolitan Municipality", + "code": "ZA.06.JHB" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 953987 + } + ], + "links": [ + "http://www.mylansa.co.za/" + ], + "aliases": [ + "Milan" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mylan", + "labels": [], + "country": { + "country_name": "South Africa", + "country_code": "ZA" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30269162" + ] + }, + "GRID": { + "preferred": "grid.476543.7", + "all": "grid.476543.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01hhn8329.json b/rc-v1.15/01hhn8329.json new file mode 100644 index 000000000..f21ed87ac --- /dev/null +++ b/rc-v1.15/01hhn8329.json @@ -0,0 +1,631 @@ +{ + "id": "https://ror.org/01hhn8329", + "name": "Max Planck Society", + "email_address": "", + "ip_addresses": [], + "established": 1948, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Biomedicine Research Institute of Buenos Aires - CONICET - Partner Institute of the Max Planck Society", + "type": "Related", + "id": "https://ror.org/04c5b8z55" + }, + { + "label": "Center for Free-Electron Laser Science", + "type": "Related", + "id": "https://ror.org/04fme8709" + }, + { + "label": "Ernst Strüngmann Institute for Neuroscience", + "type": "Related", + "id": "https://ror.org/00ygt2y02" + }, + { + "label": "German Climate Computing Centre", + "type": "Related", + "id": "https://ror.org/03ztgj037" + }, + { + "label": "Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen", + "type": "Related", + "id": "https://ror.org/00cd95c65" + }, + { + "label": "Max Planck Unit for the Science of Pathogens", + "type": "Related", + "id": "https://ror.org/04rhq3086" + }, + { + "label": "Bibliotheca Hertziana – Max Planck Institute for Art History", + "type": "Child", + "id": "https://ror.org/04g6zen34" + }, + { + "label": "Chemical Genomics Centre", + "type": "Child", + "id": "https://ror.org/05wctbc12" + }, + { + "label": "Friedrich Miescher Laboratory", + "type": "Child", + "id": "https://ror.org/04vh1tq58" + }, + { + "label": "Fritz Haber Institute of the Max Planck Society", + "type": "Child", + "id": "https://ror.org/03k9qs827" + }, + { + "label": "Halbleiterlabor of the Max-Planck-Society", + "type": "Child", + "id": "https://ror.org/055pgv213" + }, + { + "label": "Kunsthistorisches Institut in Florenz", + "type": "Child", + "id": "https://ror.org/02967z527" + }, + { + "label": "Max Planck - University of Ottawa Centre for Extreme and Quantum Photonics", + "type": "Child", + "id": "https://ror.org/00wazyk32" + }, + { + "label": "Max Planck Center for Visual Computing and Communication", + "type": "Child", + "id": "https://ror.org/03hj69t32" + }, + { + "label": "Max Planck Digital Library", + "type": "Child", + "id": "https://ror.org/0061msm67" + }, + { + "label": "Max Planck Florida Institute for Neuroscience", + "type": "Child", + "id": "https://ror.org/02rbfnr22" + }, + { + "label": "Max Planck Graduate Center", + "type": "Child", + "id": "https://ror.org/05ym69k36" + }, + { + "label": "Max Planck Innovation", + "type": "Child", + "id": "https://ror.org/00d0v0049" + }, + { + "label": "Max Planck Institut für Zellbiologie", + "type": "Child", + "id": "https://ror.org/03fkg8131" + }, + { + "label": "Max Planck Institute Luxemburg for International, European and Regulatory Procedural Law", + "type": "Child", + "id": "https://ror.org/04ys0ah18" + }, + { + "label": "Max Planck Institute for Astronomy", + "type": "Child", + "id": "https://ror.org/01vhnrs90" + }, + { + "label": "Max Planck Institute for Astrophysics", + "type": "Child", + "id": "https://ror.org/017qcv467" + }, + { + "label": "Max Planck Institute for Biogeochemistry", + "type": "Child", + "id": "https://ror.org/051yxp643" + }, + { + "label": "Max Planck Institute for Biological Cybernetics", + "type": "Child", + "id": "https://ror.org/026nmvv73" + }, + { + "label": "Max Planck Institute for Biology", + "type": "Child", + "id": "https://ror.org/0243gzr89" + }, + { + "label": "Max Planck Institute for Biology of Ageing", + "type": "Child", + "id": "https://ror.org/04xx1tc24" + }, + { + "label": "Max Planck Institute for Brain Research", + "type": "Child", + "id": "https://ror.org/02h1nk258" + }, + { + "label": "Max Planck Institute for Chemical Ecology", + "type": "Child", + "id": "https://ror.org/02ks53214" + }, + { + "label": "Max Planck Institute for Chemical Energy Conversion", + "type": "Child", + "id": "https://ror.org/01y9arx16" + }, + { + "label": "Max Planck Institute for Chemical Physics of Solids", + "type": "Child", + "id": "https://ror.org/01c997669" + }, + { + "label": "Max Planck Institute for Chemistry", + "type": "Child", + "id": "https://ror.org/02f5b7n18" + }, + { + "label": "Max-Planck-Institut für Kohlenforschung", + "type": "Child", + "id": "https://ror.org/00a7vgh58" + }, + { + "label": "Max Planck Institute for Comparative Public Law and International Law", + "type": "Child", + "id": "https://ror.org/0515m2n86" + }, + { + "label": "Max Planck Institute for Comparative and International Private Law", + "type": "Child", + "id": "https://ror.org/023ahcz89" + }, + { + "label": "Max Planck Institute for Demographic Research", + "type": "Child", + "id": "https://ror.org/02jgyam08" + }, + { + "label": "Max Planck Institute for Developmental Biology", + "type": "Child", + "id": "https://ror.org/022jc0g24" + }, + { + "label": "Max Planck Institute for Dynamics and Self-Organization", + "type": "Child", + "id": "https://ror.org/0087djs12" + }, + { + "label": "Max Planck Institute for Dynamics of Complex Technical Systems", + "type": "Child", + "id": "https://ror.org/030h7k016" + }, + { + "label": "Max Planck Institute for Empirical Aesthetics", + "type": "Child", + "id": "https://ror.org/000rdbk18" + }, + { + "label": "Max Planck Institute for Legal History and Legal Theory", + "type": "Child", + "id": "https://ror.org/00jpzvz45" + }, + { + "label": "Max Planck Institute for Evolutionary Anthropology", + "type": "Child", + "id": "https://ror.org/02a33b393" + }, + { + "label": "Max Planck Institute for Evolutionary Biology", + "type": "Child", + "id": "https://ror.org/0534re684" + }, + { + "label": "Max Planck Institute for Extraterrestrial Physics", + "type": "Child", + "id": "https://ror.org/00e4bwe12" + }, + { + "label": "Max Planck Institute for the Study of Crime, Security and Law", + "type": "Child", + "id": "https://ror.org/04a8rd767" + }, + { + "label": "Max Planck Institute for Gravitational Physics", + "type": "Child", + "id": "https://ror.org/03sry2h30" + }, + { + "label": "Max Planck Institute for Heart and Lung Research", + "type": "Child", + "id": "https://ror.org/0165r2y73" + }, + { + "label": "Max Planck Institute for Human Cognitive and Brain Sciences", + "type": "Child", + "id": "https://ror.org/0387jng26" + }, + { + "label": "Max Planck Institute for Human Development", + "type": "Child", + "id": "https://ror.org/02pp7px91" + }, + { + "label": "Max Planck Institute for Infection Biology", + "type": "Child", + "id": "https://ror.org/0046gcs23" + }, + { + "label": "Max Planck Institute for Informatics", + "type": "Child", + "id": "https://ror.org/01w19ak89" + }, + { + "label": "Max Planck Institute for Innovation and Competition", + "type": "Child", + "id": "https://ror.org/033198s46" + }, + { + "label": "Max Planck Institute for Intelligent Systems", + "type": "Child", + "id": "https://ror.org/04fq9j139" + }, + { + "label": "Max-Planck-Institut für Eisenforschung", + "type": "Child", + "id": "https://ror.org/01ngpvg12" + }, + { + "label": "Max Planck Institute for Marine Microbiology", + "type": "Child", + "id": "https://ror.org/02385fa51" + }, + { + "label": "Max Planck Institute for Mathematics", + "type": "Child", + "id": "https://ror.org/02dh8ja68" + }, + { + "label": "Max Planck Institute for Mathematics in the Sciences", + "type": "Child", + "id": "https://ror.org/00ez2he07" + }, + { + "label": "Max Planck Institute for Medical Research", + "type": "Child", + "id": "https://ror.org/000bxzc63" + }, + { + "label": "Max Planck Institute for Metabolism Research", + "type": "Child", + "id": "https://ror.org/0199g0r92" + }, + { + "label": "Max Planck Institute for Meteorology", + "type": "Child", + "id": "https://ror.org/05esem239" + }, + { + "label": "Max Planck Institute for Molecular Biomedicine", + "type": "Child", + "id": "https://ror.org/040djv263" + }, + { + "label": "Max Planck Institute for Molecular Genetics", + "type": "Child", + "id": "https://ror.org/03ate3e03" + }, + { + "label": "Max Planck Institute for Nuclear Physics", + "type": "Child", + "id": "https://ror.org/052d0h423" + }, + { + "label": "Max Planck Institute for Ornithology", + "type": "Child", + "id": "https://ror.org/00178eg98" + }, + { + "label": "Max Planck Institute for Physics", + "type": "Child", + "id": "https://ror.org/0079jjr10" + }, + { + "label": "Max Planck Institute for Plant Breeding Research", + "type": "Child", + "id": "https://ror.org/044g3zk14" + }, + { + "label": "Max Planck Institute for Plasma Physics", + "type": "Child", + "id": "https://ror.org/03taest98" + }, + { + "label": "Max Planck Institute for Polymer Research", + "type": "Child", + "id": "https://ror.org/00sb7hc59" + }, + { + "label": "Max Planck Institute for Psycholinguistics", + "type": "Child", + "id": "https://ror.org/00671me87" + }, + { + "label": "Max Planck Institute for Radio Astronomy", + "type": "Child", + "id": "https://ror.org/04jvemc39" + }, + { + "label": "Max Planck Institute for Research on Collective Goods", + "type": "Child", + "id": "https://ror.org/02x1q2477" + }, + { + "label": "Max Planck Institute for Security and Privacy", + "type": "Child", + "id": "https://ror.org/00bj0r217" + }, + { + "label": "Max Planck Institute for Social Anthropology", + "type": "Child", + "id": "https://ror.org/02mavc002" + }, + { + "label": "Max Planck Institute for Social Law and Social Policy", + "type": "Child", + "id": "https://ror.org/03vp67w60" + }, + { + "label": "Max Planck Institute for Software Systems", + "type": "Child", + "id": "https://ror.org/02pe2kf23" + }, + { + "label": "Max Planck Institute for Solar System Research", + "type": "Child", + "id": "https://ror.org/02j6gm739" + }, + { + "label": "Max Planck Institute for Solid State Research", + "type": "Child", + "id": "https://ror.org/005bk2339" + }, + { + "label": "Max Planck Institute for Tax Law and Public Finance", + "type": "Child", + "id": "https://ror.org/03gj2cq31" + }, + { + "label": "Max Planck Institute for Terrestrial Microbiology", + "type": "Child", + "id": "https://ror.org/05r7n9c40" + }, + { + "label": "Max Planck Institute for the History of Science", + "type": "Child", + "id": "https://ror.org/0492sjc74" + }, + { + "label": "Max Planck Institute for the Physics of Complex Systems", + "type": "Child", + "id": "https://ror.org/01bf9rw71" + }, + { + "label": "Max Planck Institute for the Science of Human History", + "type": "Child", + "id": "https://ror.org/05mjrzy91" + }, + { + "label": "Max Planck Institute for the Science of Light", + "type": "Child", + "id": "https://ror.org/020as7681" + }, + { + "label": "Max Planck Institute for the Structure and Dynamics of Matter", + "type": "Child", + "id": "https://ror.org/0411b0f77" + }, + { + "label": "Max Planck Institute for the Study of Religious and Ethnic Diversity", + "type": "Child", + "id": "https://ror.org/0080y7t67" + }, + { + "label": "Max Planck Institute for the Study of Societies", + "type": "Child", + "id": "https://ror.org/01dwpbz64" + }, + { + "label": "Max Planck Institute of Animal Behavior", + "type": "Child", + "id": "https://ror.org/026stee22" + }, + { + "label": "Max Planck Institute of Biochemistry", + "type": "Child", + "id": "https://ror.org/04py35477" + }, + { + "label": "Max Planck Institute of Biophysics", + "type": "Child", + "id": "https://ror.org/02panr271" + }, + { + "label": "Max Planck Institute of Colloids and Interfaces", + "type": "Child", + "id": "https://ror.org/00pwgnh47" + }, + { + "label": "Max Planck Institute of Immunobiology and Epigenetics", + "type": "Child", + "id": "https://ror.org/058xzat49" + }, + { + "label": "Max Planck Institute of Microstructure Physics", + "type": "Child", + "id": "https://ror.org/0095xwr23" + }, + { + "label": "Max Planck Institute of Molecular Cell Biology and Genetics", + "type": "Child", + "id": "https://ror.org/05b8d3w18" + }, + { + "label": "Max Planck Institute of Molecular Physiology", + "type": "Child", + "id": "https://ror.org/03vpj4s62" + }, + { + "label": "Max Planck Institute of Molecular Plant Physiology", + "type": "Child", + "id": "https://ror.org/01fbde567" + }, + { + "label": "Max Planck Institute of Neurobiology", + "type": "Child", + "id": "https://ror.org/03ap2av50" + }, + { + "label": "Max Planck Institute of Psychiatry", + "type": "Child", + "id": "https://ror.org/04dq56617" + }, + { + "label": "Max Planck Institute of Quantum Optics", + "type": "Child", + "id": "https://ror.org/01vekys64" + }, + { + "label": "Max Planck Institutes Library", + "type": "Child", + "id": "https://ror.org/010c2rf19" + }, + { + "label": "Max Planck Research Unit for Enzymology of Protein Folding", + "type": "Child", + "id": "https://ror.org/04wrg1d30" + }, + { + "label": "Max Planck Research Unit for Neurogenetics", + "type": "Child", + "id": "https://ror.org/04fx38p98" + }, + { + "label": "Max Planck University of Twente Center for Complex Fluid Dynamics", + "type": "Child", + "id": "https://ror.org/02n9d1732" + }, + { + "label": "Max Planck-Bristol Centre for Minimal Biology", + "type": "Child", + "id": "https://ror.org/05k0x2619" + }, + { + "label": "Minerva Stiftung", + "type": "Child", + "id": "https://ror.org/02rxjts25" + }, + { + "label": "Social Neuroscience Lab", + "type": "Child", + "id": "https://ror.org/02e4p6m45" + }, + { + "label": "Max Planck Institute for Neurobiology of Behavior – caesar", + "type": "Child", + "id": "https://ror.org/02yjyfs84" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Upper Bavaria", + "id": 2861322, + "ascii_name": "Upper Bavaria", + "code": "DE.02.091" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.mpg.de/en" + ], + "aliases": [], + "acronyms": [ + "MPG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Max_Planck_Society", + "labels": [ + { + "label": "Max-Planck-Gesellschaft zur Förderung der Wissenschaften", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2105 1091" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004189" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "614753" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q158085" + ] + }, + "GRID": { + "preferred": "grid.4372.2", + "all": "grid.4372.2" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01hvx5h04.json b/rc-v1.15/01hvx5h04.json new file mode 100644 index 000000000..21e3ef9e1 --- /dev/null +++ b/rc-v1.15/01hvx5h04.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01hvx5h04", + "name": "Osaka Metropolitan University", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Osaka City University", + "type": "Predecessor", + "id": "https://ror.org/02skfsw40" + }, + { + "label": "Osaka Prefecture University", + "type": "Predecessor", + "id": "https://ror.org/02cf1je33" + } + ], + "addresses": [ + { + "lat": 34.69374, + "lng": 135.50218, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "name": "Ōsaka", + "id": 1853904, + "ascii_name": "Ōsaka", + "code": "JP.32" + }, + "geonames_admin2": { + "name": "Osaka City", + "id": 1853897, + "ascii_name": "Osaka City", + "code": "JP.32.1853897" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.omu.ac.jp" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Osaka_Metropolitan_University", + "labels": [ + { + "label": "大阪公立大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q101579967", + "all": [ + "Q101579967" + ] + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01kjjpm11.json b/rc-v1.15/01kjjpm11.json new file mode 100644 index 000000000..d206cba60 --- /dev/null +++ b/rc-v1.15/01kjjpm11.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01kjjpm11", + "name": "Osaka Meijo Women's College", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.69374, + "lng": 135.50218, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "name": "Ōsaka", + "id": 1853904, + "ascii_name": "Ōsaka", + "code": "JP.32" + }, + "geonames_admin2": { + "name": "Osaka City", + "id": 1853897, + "ascii_name": "Osaka City", + "code": "JP.32.1853897" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.meijo.ac.jp/about/education.html" + ], + "aliases": [ + "Osakameijojoshitankidaigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "大阪明浄女子短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9356 4825" + ] + }, + "GRID": { + "preferred": "grid.471885.7", + "all": "grid.471885.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01krpyz50.json b/rc-v1.15/01krpyz50.json new file mode 100644 index 000000000..f5145b50e --- /dev/null +++ b/rc-v1.15/01krpyz50.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/01krpyz50", + "name": "Yamazaki College of Animal Health Technology", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.65583, + "lng": 139.32389, + "state": null, + "state_code": null, + "city": "Hachiōji", + "geonames_city": { + "id": 1863440, + "city": "Hachiōji", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": "Hachiōji", + "id": 8304375, + "ascii_name": "Hachiōji", + "code": "JP.40.8304375" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://jc.yamazaki.ac.jp/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Yamazaki_College_of_Animal_Health_Technology", + "labels": [ + { + "label": "ヤマザキ動物看護短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q8048009" + ] + }, + "GRID": { + "preferred": "grid.505749.a", + "all": "grid.505749.a" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01nvdnb36.json b/rc-v1.15/01nvdnb36.json new file mode 100644 index 000000000..0bb86cbc3 --- /dev/null +++ b/rc-v1.15/01nvdnb36.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01nvdnb36", + "name": "Central European Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.13333, + "lng": 16.46667, + "state": null, + "state_code": null, + "city": "Schwechat", + "geonames_city": { + "id": 2765388, + "city": "Schwechat", + "geonames_admin1": { + "name": "Lower Austria", + "id": 2770542, + "ascii_name": "Lower Austria", + "code": "AT.03" + }, + "geonames_admin2": { + "name": "Bruck an der Leitha", + "id": 2781372, + "ascii_name": "Bruck an der Leitha", + "code": "AT.03.307" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2782113 + } + ], + "links": [ + "http://www2.ceit.at/" + ], + "aliases": [], + "acronyms": [ + "CEIT" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "GRID": { + "preferred": "grid.423481.8", + "all": "grid.423481.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01p2ej961.json b/rc-v1.15/01p2ej961.json new file mode 100644 index 000000000..c6b52f8e2 --- /dev/null +++ b/rc-v1.15/01p2ej961.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01p2ej961", + "name": "The Art Institutes", + "email_address": null, + "ip_addresses": [], + "established": 1969, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Art Institute of Atlanta", + "type": "Child", + "id": "https://ror.org/04vwgk321" + }, + { + "label": "Art Institute of Houston", + "type": "Child", + "id": "https://ror.org/01pc4rp54" + } + ], + "addresses": [ + { + "lat": 40.44062, + "lng": -79.99589, + "state": null, + "state_code": null, + "city": "Pittsburgh", + "geonames_city": { + "id": 5206379, + "city": "Pittsburgh", + "geonames_admin1": { + "name": "Pennsylvania", + "id": 6254927, + "ascii_name": "Pennsylvania", + "code": "US.PA" + }, + "geonames_admin2": { + "name": "Allegheny", + "id": 5178040, + "ascii_name": "Allegheny", + "code": "US.PA.003" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/" + ], + "aliases": [], + "acronyms": [ + "Ai" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Art_Institutes", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "preferred": "grid.466685.f", + "all": "grid.466685.f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01sfh2b07.json b/rc-v1.15/01sfh2b07.json new file mode 100644 index 000000000..6bd9d659e --- /dev/null +++ b/rc-v1.15/01sfh2b07.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/01sfh2b07", + "name": "National Agency for New Technologies Energy and Sustainable Economic Development", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Agency for New Technologies, Energy and Sustainable Economic Development", + "type": "Successor", + "id": "https://ror.org/02an8es95" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "ENEA" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30285187" + ] + }, + "GRID": { + "preferred": "grid.425861.c", + "all": "grid.425861.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/01v6d0b34.json b/rc-v1.15/01v6d0b34.json new file mode 100644 index 000000000..e63fdbc61 --- /dev/null +++ b/rc-v1.15/01v6d0b34.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/01v6d0b34", + "name": "Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Science Foundation", + "type": "Parent", + "id": "https://ror.org/021nxhr62" + }, + { + "label": "Carnegie Mellon University", + "type": "Parent", + "id": "https://ror.org/05x2bcf33" + }, + { + "label": "University of Colorado Boulder", + "type": "Parent", + "id": "https://ror.org/02ttsq026" + }, + { + "label": "University of Illinois Urbana-Champaign", + "type": "Parent", + "id": "https://ror.org/047426m28" + }, + { + "label": "University at Buffalo, State University of New York", + "type": "Parent", + "id": "https://ror.org/01y64my43" + }, + { + "label": "Extreme Science and Engineering Discovery Environment", + "type": "Predecessor", + "id": "https://ror.org/05524hb64" + } + ], + "addresses": [ + { + "lat": 38.80484, + "lng": -77.04692, + "state": null, + "state_code": null, + "city": "Alexandria", + "geonames_city": { + "id": 4744091, + "city": "Alexandria", + "geonames_admin1": { + "name": "Virginia", + "id": 6254928, + "ascii_name": "Virginia", + "code": "US.VA" + }, + "geonames_admin2": { + "name": "Alexandria", + "id": 4744106, + "ascii_name": "Alexandria", + "code": "US.VA.510" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://access-ci.org" + ], + "aliases": [], + "acronyms": [ + "ACCESS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/rc-v1.15/01wtn4904.json b/rc-v1.15/01wtn4904.json new file mode 100644 index 000000000..669bfff42 --- /dev/null +++ b/rc-v1.15/01wtn4904.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01wtn4904", + "name": "Osaka Women's Junior College", + "email_address": null, + "ip_addresses": [], + "established": 1955, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.69374, + "lng": 135.50218, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "name": "Ōsaka", + "id": 1853904, + "ascii_name": "Ōsaka", + "code": "JP.32" + }, + "geonames_admin2": { + "name": "Osaka City", + "id": 1853897, + "ascii_name": "Osaka City", + "code": "JP.32.1853897" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.owjc.jp/" + ], + "aliases": [ + "Ōsaka joshi tanki daigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Osaka_Women%27s_Junior_College", + "labels": [ + { + "label": "大阪女子短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0643 0001" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7105627" + ] + }, + "GRID": { + "preferred": "grid.471938.0", + "all": "grid.471938.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/022mc7478.json b/rc-v1.15/022mc7478.json new file mode 100644 index 000000000..b59d01bfd --- /dev/null +++ b/rc-v1.15/022mc7478.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/022mc7478", + "name": "St. Thomas University", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.71667, + "lng": 135.41667, + "state": null, + "state_code": null, + "city": "Amagasaki", + "geonames_city": { + "id": 1865387, + "city": "Amagasaki", + "geonames_admin1": { + "name": "Hyōgo", + "id": 1862047, + "ascii_name": "Hyōgo", + "code": "JP.13" + }, + "geonames_admin2": { + "name": "Amagasaki Shi", + "id": 1865383, + "ascii_name": "Amagasaki Shi", + "code": "JP.13.1865383" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [], + "aliases": [ + "Sapientia University", + "Eichi University" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Thomas_University,_Japan", + "labels": [ + { + "label": "聖トマス大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0373 6451" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "25646692" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7592003" + ] + }, + "GRID": { + "preferred": "grid.443295.d", + "all": "grid.443295.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/023enrs75.json b/rc-v1.15/023enrs75.json new file mode 100644 index 000000000..6bba254ab --- /dev/null +++ b/rc-v1.15/023enrs75.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/023enrs75", + "name": "Art Institute of York - Pennsylvania", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 39.9626, + "lng": -76.72774, + "state": null, + "state_code": null, + "city": "York", + "geonames_city": { + "id": 4562407, + "city": "York", + "geonames_admin1": { + "name": "Pennsylvania", + "id": 6254927, + "ascii_name": "Pennsylvania", + "code": "US.PA" + }, + "geonames_admin2": { + "name": "York", + "id": 5220355, + "ascii_name": "York", + "code": "US.PA.133" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/york" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Art_Institute_of_York_%E2%80%93_Pennsylvania", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0534 4574" + ] + }, + "GRID": { + "preferred": "grid.465798.1", + "all": "grid.465798.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/024atcf19.json b/rc-v1.15/024atcf19.json new file mode 100644 index 000000000..502470dab --- /dev/null +++ b/rc-v1.15/024atcf19.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/024atcf19", + "name": "UCL Australia", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -34.92866, + "lng": 138.59863, + "state": null, + "state_code": null, + "city": "Adelaide", + "geonames_city": { + "id": 2078025, + "city": "Adelaide", + "geonames_admin1": { + "name": "South Australia", + "id": 2061327, + "ascii_name": "South Australia", + "code": "AU.05" + }, + "geonames_admin2": { + "name": "Adelaide", + "id": 7839644, + "ascii_name": "Adelaide", + "code": "AU.05.40070" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "http://www.ucl.ac.uk/australia/" + ], + "aliases": [ + "University College London" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/UCL_Australia", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q19880139" + ] + }, + "GRID": { + "preferred": "grid.472696.8", + "all": "grid.472696.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/024j9sx72.json b/rc-v1.15/024j9sx72.json new file mode 100644 index 000000000..2f0a1346c --- /dev/null +++ b/rc-v1.15/024j9sx72.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/024j9sx72", + "name": "Galway-Mayo Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Atlantic Technological University", + "type": "Successor", + "id": "https://ror.org/0458dap48" + } + ], + "addresses": [ + { + "lat": 53.27245, + "lng": -9.05095, + "state": null, + "state_code": null, + "city": "Galway", + "geonames_city": { + "id": 2964180, + "city": "Galway", + "geonames_admin1": { + "name": "Connaught", + "id": 7521313, + "ascii_name": "Connaught", + "code": "IE.C" + }, + "geonames_admin2": { + "name": "Galway", + "id": 2964179, + "ascii_name": "Galway", + "code": "IE.C.10" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "http://www.gmit.ie/" + ], + "aliases": [ + "Institúid Teicneolaíochta na Gaillimhe-Maigh Eo" + ], + "acronyms": [ + "GMIT" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Galway-Mayo_Institute_of_Technology", + "labels": [ + { + "label": "Institiúid Teicneolaíochta na Gaillimhe-Maigh Eo", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0414 8879" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "620235" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5519456" + ] + }, + "GRID": { + "preferred": "grid.418104.8", + "all": "grid.418104.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/024za3n32.json b/rc-v1.15/024za3n32.json new file mode 100644 index 000000000..5dec96f2c --- /dev/null +++ b/rc-v1.15/024za3n32.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/024za3n32", + "name": "Instytut Biotechnologii i Antybiotyków", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Łukasiewicz Research Network - Industrial Chemistry Institute", + "type": "Successor", + "id": "https://ror.org/00jhf1r34" + } + ], + "addresses": [ + { + "lat": 52.22977, + "lng": 21.01178, + "state": null, + "state_code": null, + "city": "Warsaw", + "geonames_city": { + "id": 756135, + "city": "Warsaw", + "geonames_admin1": { + "name": "Mazovia", + "id": 858787, + "ascii_name": "Mazovia", + "code": "PL.78" + }, + "geonames_admin2": { + "name": "Warszawa", + "id": 6695624, + "ascii_name": "Warszawa", + "code": "PL.78.1465" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 798544 + } + ], + "links": [ + "http://www.iba.waw.pl/en/index.html" + ], + "aliases": [ + "Institute of Biotechnology and Antibiotics" + ], + "acronyms": [ + "IBA" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0626 8454" + ] + }, + "GRID": { + "preferred": "grid.418876.4", + "all": "grid.418876.4" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02578qw11.json b/rc-v1.15/02578qw11.json new file mode 100644 index 000000000..8879bbc1d --- /dev/null +++ b/rc-v1.15/02578qw11.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02578qw11", + "name": "Consumers, Health, Agriculture and Food Executive Agency", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "European Commission", + "type": "Parent", + "id": "https://ror.org/00k4n6c32" + } + ], + "addresses": [ + { + "lat": 49.61167, + "lng": 6.13, + "state": null, + "state_code": null, + "city": "Luxembourg", + "geonames_city": { + "id": 2960316, + "city": "Luxembourg", + "geonames_admin1": { + "name": "Luxembourg", + "id": 2960315, + "ascii_name": "Luxembourg", + "code": "LU.LU" + }, + "geonames_admin2": { + "name": "Ville de Luxembourg", + "id": 2960317, + "ascii_name": "Ville de Luxembourg", + "code": "LU.LU.2960317" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2960313 + } + ], + "links": [ + "http://ec.europa.eu/chafea/" + ], + "aliases": [ + "Executive Agency for the Public Health Programme", + "Executive Agency for Health and Consumers" + ], + "acronyms": [ + "CHAFEA", + "PHEA", + "EAHC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Consumer,_Health_and_Food_Executive_Agency", + "labels": [ + { + "label": "Exekutivagentur für Verbraucher, Gesundheit, Landwirtschaft und Lebensmittel", + "iso639": "de" + }, + { + "label": "Agence Exécutive pour les Consommateurs, la Santé, l’agriculture et l’alimentation", + "iso639": "fr" + } + ], + "country": { + "country_name": "Luxembourg", + "country_code": "LU" + }, + "external_ids": { + "FundRef": { + "preferred": "501100003528", + "all": [ + "501100003528", + "501100000810", + "501100007565" + ] + }, + "GRID": { + "preferred": "grid.454146.6", + "all": "grid.454146.6" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/025j82f41.json b/rc-v1.15/025j82f41.json new file mode 100644 index 000000000..e281ae280 --- /dev/null +++ b/rc-v1.15/025j82f41.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/025j82f41", + "name": "JDSU (Canada)", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "JDSU (United States)", + "type": "Parent", + "id": "https://ror.org/01a5v8x09" + }, + { + "label": "Viavi Solutions (United States)", + "type": "Successor", + "id": "https://ror.org/059a9e323" + } + ], + "addresses": [ + { + "lat": 45.41117, + "lng": -75.69812, + "state": null, + "state_code": null, + "city": "Ottawa", + "geonames_city": { + "id": 6094817, + "city": "Ottawa", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Ottawa", + "id": 8581623, + "ascii_name": "Ottawa", + "code": "CA.08.3506" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.jdsu.com/" + ], + "aliases": [ + "JDS Uniphase" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/JDSU", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0498 2275" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q29123276" + ] + }, + "GRID": { + "preferred": "grid.450966.8", + "all": "grid.450966.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0269ncv24.json b/rc-v1.15/0269ncv24.json new file mode 100644 index 000000000..75692f218 --- /dev/null +++ b/rc-v1.15/0269ncv24.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/0269ncv24", + "name": "Limerick Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Technological University of the Shannon: Midlands Midwest", + "type": "Successor", + "id": "https://ror.org/04efm0253" + } + ], + "addresses": [ + { + "lat": 52.66472, + "lng": -8.62306, + "state": null, + "state_code": null, + "city": "Limerick", + "geonames_city": { + "id": 2962943, + "city": "Limerick", + "geonames_admin1": { + "name": "Munster", + "id": 7521315, + "ascii_name": "Munster", + "code": "IE.M" + }, + "geonames_admin2": { + "name": "Limerick", + "id": 11611445, + "ascii_name": "Limerick", + "code": "IE.M.42" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "http://www.lit.ie/default.aspx" + ], + "aliases": [], + "acronyms": [ + "LIT" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Limerick_Institute_of_Technology", + "labels": [ + { + "label": "Institiúid Teicneolaíochta Luimneach", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9965 2674" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "537825" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6549261" + ] + }, + "GRID": { + "preferred": "grid.435771.3", + "all": "grid.435771.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/027p4qx72.json b/rc-v1.15/027p4qx72.json new file mode 100644 index 000000000..6003c9aea --- /dev/null +++ b/rc-v1.15/027p4qx72.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/027p4qx72", + "name": "Indonesian National Institute of Aeronautics and Space", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Research and Innovation Agency", + "type": "Successor", + "id": "https://ror.org/02hmjzt55" + } + ], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "name": "Jakarta", + "id": 1642907, + "ascii_name": "Jakarta", + "code": "ID.04" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [ + "https://www.lapan.go.id/" + ], + "aliases": [], + "acronyms": [ + "LAPAN" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Institute_of_Aeronautics_and_Space", + "labels": [ + { + "label": "Lembaga Penerbangan dan Antariksa Nasional", + "iso639": "id" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6041 6526" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1797789" + ] + }, + "GRID": { + "preferred": "grid.502861.8", + "all": "grid.502861.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/028rzxs74.json b/rc-v1.15/028rzxs74.json new file mode 100644 index 000000000..0e7e34199 --- /dev/null +++ b/rc-v1.15/028rzxs74.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/028rzxs74", + "name": "Mylan (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (United States)", + "type": "Parent", + "id": "https://ror.org/04nsw4151" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": 51.76338, + "lng": -0.22419, + "state": null, + "state_code": null, + "city": "Hatfield", + "geonames_city": { + "id": 2647349, + "city": "Hatfield", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Hertfordshire", + "id": 2647043, + "ascii_name": "Hertfordshire", + "code": "GB.ENG.F8" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.mylan.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mylan", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30714497" + ] + }, + "GRID": { + "preferred": "grid.473098.1", + "all": "grid.473098.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0292ym357.json b/rc-v1.15/0292ym357.json new file mode 100644 index 000000000..b0cb2141f --- /dev/null +++ b/rc-v1.15/0292ym357.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0292ym357", + "name": "Association of Super-Advanced Electronics", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://aset.la.coocan.jp/" + ], + "aliases": [], + "acronyms": [ + "ASET" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "技術研究組合 超先端電子技術開発機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5897 1635" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006341" + ] + }, + "GRID": { + "preferred": "grid.470806.d", + "all": "grid.470806.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/029vq7597.json b/rc-v1.15/029vq7597.json new file mode 100644 index 000000000..8fbddbfbc --- /dev/null +++ b/rc-v1.15/029vq7597.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/029vq7597", + "name": "Enterprise Cape Breton Corporation", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.1351, + "lng": -60.1831, + "state": null, + "state_code": null, + "city": "Sydney", + "geonames_city": { + "id": 6354908, + "city": "Sydney", + "geonames_admin1": { + "name": "Nova Scotia", + "id": 6091530, + "ascii_name": "Nova Scotia", + "code": "CA.07" + }, + "geonames_admin2": { + "name": "Cape Breton County", + "id": 5915565, + "ascii_name": "Cape Breton County", + "code": "CA.07.1217" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.ecbc-secb.gc.ca/index_intro.php" + ], + "aliases": [], + "acronyms": [ + "ECBC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Enterprise_Cape_Breton_Corporation", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2104 8415" + ] + }, + "GRID": { + "preferred": "grid.450598.5", + "all": "grid.450598.5" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02ag8cq23.json b/rc-v1.15/02ag8cq23.json new file mode 100644 index 000000000..2d6f9ef87 --- /dev/null +++ b/rc-v1.15/02ag8cq23.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/02ag8cq23", + "name": "Tekes", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Ministry of Economic Affairs and Employment", + "type": "Parent", + "id": "https://ror.org/008d1xp69" + }, + { + "label": "Business Finland", + "type": "Successor", + "id": "https://ror.org/05bgf9v38" + } + ], + "addresses": [ + { + "lat": 60.16952, + "lng": 24.93545, + "state": null, + "state_code": null, + "city": "Helsinki", + "geonames_city": { + "id": 658225, + "city": "Helsinki", + "geonames_admin1": { + "name": "Uusimaa", + "id": 830709, + "ascii_name": "Uusimaa", + "code": "FI.01" + }, + "geonames_admin2": { + "name": "Helsinki", + "id": 9610677, + "ascii_name": "Helsinki", + "code": "FI.01.011" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 660013 + } + ], + "links": [ + "http://www.tekes.fi/" + ], + "aliases": [ + "Finnish Funding Agency for Technology and Innovation" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Business_Finland", + "labels": [], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0545 5848" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100003406" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q42056829" + ] + }, + "GRID": { + "preferred": "grid.425107.5", + "all": "grid.425107.5" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02c8z2835.json b/rc-v1.15/02c8z2835.json new file mode 100644 index 000000000..df0d9ef49 --- /dev/null +++ b/rc-v1.15/02c8z2835.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02c8z2835", + "name": "Aichi Kiwami College of Nursing", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Yamazaki Gakuen University", + "type": "Successor", + "id": "https://ror.org/04gzb3214" + } + ], + "addresses": [ + { + "lat": 35.3, + "lng": 136.8, + "state": null, + "state_code": null, + "city": "Ichinomiya", + "geonames_city": { + "id": 1861949, + "city": "Ichinomiya", + "geonames_admin1": { + "name": "Aichi", + "id": 1865694, + "ascii_name": "Aichi", + "code": "JP.01" + }, + "geonames_admin2": { + "name": "Ichinomiya", + "id": 1861940, + "ascii_name": "Ichinomiya", + "code": "JP.01.1861940" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.aichi-kiwami.ac.jp/" + ], + "aliases": [ + "Aichi Kiwami Kango Tanki Daigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Aichi_Kiwami_College_of_Nursing", + "labels": [ + { + "label": "愛知きわみ看護短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0402 3015" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4696575" + ] + }, + "GRID": { + "preferred": "grid.471442.0", + "all": "grid.471442.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02cf1je33.json b/rc-v1.15/02cf1je33.json new file mode 100644 index 000000000..233b5f263 --- /dev/null +++ b/rc-v1.15/02cf1je33.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/02cf1je33", + "name": "Osaka Prefecture University", + "email_address": "", + "ip_addresses": [], + "established": 1883, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Osaka Prefectural Medical Center", + "type": "Related", + "id": "https://ror.org/00vcb6036" + }, + { + "label": "Osaka Metropolitan University", + "type": "Successor", + "id": "https://ror.org/01hvx5h04" + } + ], + "addresses": [ + { + "lat": 34.58333, + "lng": 135.46667, + "state": null, + "state_code": null, + "city": "Sakai", + "geonames_city": { + "id": 1853195, + "city": "Sakai", + "geonames_admin1": { + "name": "Ōsaka", + "id": 1853904, + "ascii_name": "Ōsaka", + "code": "JP.32" + }, + "geonames_admin2": { + "name": "Sakai", + "id": 1853167, + "ascii_name": "Sakai", + "code": "JP.32.1853167" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.osakafu-u.ac.jp/english/" + ], + "aliases": [ + "Ōsaka furitsu daigaku" + ], + "acronyms": [ + "OPU" + ], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Osaka_Prefecture_University", + "labels": [ + { + "label": "大阪府立大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0676 0594" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2029014" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q290456" + ] + }, + "GRID": { + "preferred": "grid.261455.1", + "all": "grid.261455.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02dyxwz31.json b/rc-v1.15/02dyxwz31.json new file mode 100644 index 000000000..9fb7a5ebf --- /dev/null +++ b/rc-v1.15/02dyxwz31.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/02dyxwz31", + "name": "Athlone Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Advanced Materials and BioEngineering Research", + "type": "Child", + "id": "https://ror.org/01c4rxk68" + }, + { + "label": "Technological University of the Shannon: Midlands Midwest", + "type": "Related", + "id": "https://ror.org/04efm0253" + }, + { + "label": "Technological University of the Shannon: Midlands Midwest", + "type": "Successor", + "id": "https://ror.org/04efm0253" + } + ], + "addresses": [ + { + "lat": 53.42278, + "lng": -7.93722, + "state": null, + "state_code": null, + "city": "Athlone", + "geonames_city": { + "id": 3313472, + "city": "Athlone", + "geonames_admin1": { + "name": "Leinster", + "id": 7521314, + "ascii_name": "Leinster", + "code": "IE.L" + }, + "geonames_admin2": { + "name": "County Westmeath", + "id": 2960972, + "ascii_name": "County Westmeath", + "code": "IE.L.29" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "http://www.ait.ie/" + ], + "aliases": [], + "acronyms": [ + "AIT" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Athlone_Institute_of_Technology", + "labels": [ + { + "label": "Institiúid Teicneolaíochta Bhaile Átha Luain", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0684 6355" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004981" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "588844" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q14328110" + ] + }, + "GRID": { + "preferred": "grid.418154.d", + "all": "grid.418154.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02eh2pe44.json b/rc-v1.15/02eh2pe44.json new file mode 100644 index 000000000..3278fa52e --- /dev/null +++ b/rc-v1.15/02eh2pe44.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02eh2pe44", + "name": "Art Institute of Pittsburgh", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 40.44062, + "lng": -79.99589, + "state": null, + "state_code": null, + "city": "Pittsburgh", + "geonames_city": { + "id": 5206379, + "city": "Pittsburgh", + "geonames_admin1": { + "name": "Pennsylvania", + "id": 6254927, + "ascii_name": "Pennsylvania", + "code": "US.PA" + }, + "geonames_admin2": { + "name": "Allegheny", + "id": 5178040, + "ascii_name": "Allegheny", + "code": "US.PA.003" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/pittsburgh/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Art_Institute_of_Pittsburgh", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0789 2118" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4796894" + ] + }, + "GRID": { + "preferred": "grid.465789.1", + "all": "grid.465789.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02h60r346.json b/rc-v1.15/02h60r346.json new file mode 100644 index 000000000..15a42adb7 --- /dev/null +++ b/rc-v1.15/02h60r346.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/02h60r346", + "name": "Kobe University of Fashion and Design", + "email_address": null, + "ip_addresses": [], + "established": 1937, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.65524, + "lng": 135.00687, + "state": null, + "state_code": null, + "city": "Akashi", + "geonames_city": { + "id": 1847966, + "city": "Akashi", + "geonames_admin1": { + "name": "Hyōgo", + "id": 1862047, + "ascii_name": "Hyōgo", + "code": "JP.13" + }, + "geonames_admin2": { + "name": "Akashi Shi", + "id": 1865470, + "ascii_name": "Akashi Shi", + "code": "JP.13.1865470" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.kobe-fashion.ac.jp" + ], + "aliases": [ + "Kobe Dressmaker Jogakuin", + "Akashi Women's Junior College", + "Akashi Junior College", + "Kobe College of Liberal Arts" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Kobe_University_of_Fashion_and_Design", + "labels": [ + { + "label": "神戸ファッション造形大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "17003193" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q11589764" + ] + }, + "GRID": { + "preferred": "grid.443639.f", + "all": "grid.443639.f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02jhjzd11.json b/rc-v1.15/02jhjzd11.json new file mode 100644 index 000000000..0228abdbf --- /dev/null +++ b/rc-v1.15/02jhjzd11.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02jhjzd11", + "name": "National School for Water and Environmental Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Child", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://engees.unistra.fr/en/" + ], + "aliases": [], + "acronyms": [ + "ENGEES" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8652 7065" + ] + }, + "FundRef": { + "preferred": "501100019834", + "all": [ + "501100019834" + ] + }, + "GRID": { + "preferred": "grid.466385.a", + "all": "grid.466385.a" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02m3w2z38.json b/rc-v1.15/02m3w2z38.json new file mode 100644 index 000000000..a91844ff0 --- /dev/null +++ b/rc-v1.15/02m3w2z38.json @@ -0,0 +1,77 @@ +{ + "id": "https://ror.org/02m3w2z38", + "name": "Office for Health Improvement and Disparities", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Public Health England", + "type": "Predecessor", + "id": "https://ror.org/00vbvha87" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.gov.uk/government/organisations/office-for-health-improvement-and-disparities" + ], + "aliases": [], + "acronyms": [ + "OHID" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Office_for_Health_Improvement_and_Disparities", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/rc-v1.15/02nhqek82.json b/rc-v1.15/02nhqek82.json new file mode 100644 index 000000000..f7b07f238 --- /dev/null +++ b/rc-v1.15/02nhqek82.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/02nhqek82", + "name": "University Children’s Hospital Basel", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.ukbb.ch/" + ], + "aliases": [], + "acronyms": [ + "UKBB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Children%27s_Hospital_Basel", + "labels": [ + { + "label": "Universitäts-Kinderspital beider Basel", + "iso639": "de" + }, + { + "label": "Hôpital universitaire pédiatrique des deux Bâle", + "iso639": "fr" + }, + { + "label": "University Children’s Hospital Basel", + "iso639": "en" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0509 0981" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2496240" + ] + }, + "GRID": { + "preferred": "grid.412347.7", + "all": "grid.412347.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02s6k3f65.json b/rc-v1.15/02s6k3f65.json new file mode 100644 index 000000000..3a6582644 --- /dev/null +++ b/rc-v1.15/02s6k3f65.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/02s6k3f65", + "name": "University of Basel", + "email_address": "", + "ip_addresses": [], + "established": 1460, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Friedrich Miescher Institute", + "type": "Related", + "id": "https://ror.org/01bmjkv45" + }, + { + "label": "Swiss Tropical and Public Health Institute", + "type": "Related", + "id": "https://ror.org/03adhka07" + }, + { + "label": "University Children’s Hospital Basel", + "type": "Related", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Related", + "id": "https://ror.org/04k51q396" + }, + { + "label": "Universitäre Psychiatrische Kliniken Basel", + "type": "Related", + "id": "https://ror.org/05fw3jg78" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unibas.ch/de" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Basel", + "labels": [ + { + "label": "Universität Basel", + "iso639": "de" + }, + { + "label": "Université de Bâle", + "iso639": "fr" + }, + { + "label": "Università di Basilea", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0642" + ] + }, + "FundRef": { + "preferred": "100008375", + "all": [ + "100008375", + "501100008595", + "100008550" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "427614" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q372608" + ] + }, + "GRID": { + "preferred": "grid.6612.3", + "all": "grid.6612.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02skfsw40.json b/rc-v1.15/02skfsw40.json new file mode 100644 index 000000000..3efa4a385 --- /dev/null +++ b/rc-v1.15/02skfsw40.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/02skfsw40", + "name": "Osaka City University", + "email_address": null, + "ip_addresses": [], + "established": 1880, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Osaka City University Hospital", + "type": "Related", + "id": "https://ror.org/05mxean80" + }, + { + "label": "Osaka Metropolitan University", + "type": "Successor", + "id": "https://ror.org/01hvx5h04" + } + ], + "addresses": [ + { + "lat": 34.69374, + "lng": 135.50218, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "name": "Ōsaka", + "id": 1853904, + "ascii_name": "Ōsaka", + "code": "JP.32" + }, + "geonames_admin2": { + "name": "Osaka City", + "id": 1853897, + "ascii_name": "Osaka City", + "code": "JP.32.1853897" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.osaka-cu.ac.jp/en" + ], + "aliases": [ + "Ōsaka shiritsu daigaku" + ], + "acronyms": [ + "OCU" + ], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Osaka_City_University", + "labels": [ + { + "label": "大阪市立大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1009 6411" + ] + }, + "FundRef": { + "preferred": "100015062", + "all": [ + "100015062" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "604496" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1143396" + ] + }, + "GRID": { + "preferred": "grid.261445.0", + "all": "grid.261445.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02tz8r820.json b/rc-v1.15/02tz8r820.json new file mode 100644 index 000000000..869aad6f4 --- /dev/null +++ b/rc-v1.15/02tz8r820.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/02tz8r820", + "name": "Institute of Soil Biology", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Biology Centre of the Czech Academy of Sciences", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "name": "Jihočeský kraj", + "id": 3339537, + "ascii_name": "Jihočeský kraj", + "code": "CZ.79" + }, + "geonames_admin2": { + "name": "České Budějovice District", + "id": 3077915, + "ascii_name": "České Budějovice District", + "code": "CZ.79.0311" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3077311 + } + ], + "links": [ + "http://www.upb.cas.cz/en" + ], + "aliases": [ + "Ústav Půdní Biologie" + ], + "acronyms": [ + "ISB" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "preferred": "grid.448363.e", + "all": "grid.448363.e" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02vfaya75.json b/rc-v1.15/02vfaya75.json new file mode 100644 index 000000000..543750504 --- /dev/null +++ b/rc-v1.15/02vfaya75.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02vfaya75", + "name": "Art Institute of Seattle", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 47.60621, + "lng": -122.33207, + "state": null, + "state_code": null, + "city": "Seattle", + "geonames_city": { + "id": 5809844, + "city": "Seattle", + "geonames_admin1": { + "name": "Washington", + "id": 5815135, + "ascii_name": "Washington", + "code": "US.WA" + }, + "geonames_admin2": { + "name": "King", + "id": 5799783, + "ascii_name": "King", + "code": "US.WA.033" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/seattle/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Art_Institute_of_Seattle", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0789 5714" + ] + }, + "GRID": { + "preferred": "grid.465792.b", + "all": "grid.465792.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02yqgb753.json b/rc-v1.15/02yqgb753.json new file mode 100644 index 000000000..f7bd3c951 --- /dev/null +++ b/rc-v1.15/02yqgb753.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02yqgb753", + "name": "Life Sciences International Postgraduate Educational Center", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "United Nations Educational, Scientific and Cultural Organization", + "type": "Parent", + "id": "https://ror.org/04h4z8k05" + }, + { + "label": "Biophysics Center of Armenian", + "type": "Predecessor", + "id": "https://ror.org/01br3aa17" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.biophys.am/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q77077134" + ] + }, + "GRID": { + "preferred": "grid.506497.9", + "all": "grid.506497.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/02zbz4g27.json b/rc-v1.15/02zbz4g27.json new file mode 100644 index 000000000..d19ba3249 --- /dev/null +++ b/rc-v1.15/02zbz4g27.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/02zbz4g27", + "name": "International Federation of Library Associations and Institutions", + "email_address": null, + "ip_addresses": [], + "established": 1927, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "International Federation of Library Associations and Institutions", + "type": "Successor", + "id": "https://ror.org/026gatw61" + } + ], + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "name": "British Columbia", + "id": 5909050, + "ascii_name": "British Columbia", + "code": "CA.02" + }, + "geonames_admin2": { + "name": "Metro Vancouver Regional District", + "id": 5965814, + "ascii_name": "Metro Vancouver Regional District", + "code": "CA.02.5915" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.ifla.org/" + ], + "aliases": [], + "acronyms": [ + "IFLA" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "preferred": null, + "all": [ + "501100001714" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q50376880" + ] + }, + "GRID": { + "preferred": "grid.417813.8", + "all": "grid.417813.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0308s4091.json b/rc-v1.15/0308s4091.json new file mode 100644 index 000000000..453ac2ed2 --- /dev/null +++ b/rc-v1.15/0308s4091.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0308s4091", + "name": "Eijkman Institute for Molecular Biology", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Research and Innovation Agency", + "type": "Successor", + "id": "https://ror.org/02hmjzt55" + } + ], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "name": "Jakarta", + "id": 1642907, + "ascii_name": "Jakarta", + "code": "ID.04" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [ + "http://www.eijkman.go.id/" + ], + "aliases": [ + "Eijkman Institute" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Eijkman_Institute_for_Molecular_Biology", + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1795 0993" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1303680" + ] + }, + "GRID": { + "preferred": "grid.418754.b", + "all": "grid.418754.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/032fvf508.json b/rc-v1.15/032fvf508.json new file mode 100644 index 000000000..a1d1e3abf --- /dev/null +++ b/rc-v1.15/032fvf508.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/032fvf508", + "name": "Institute of Technology Sligo", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Atlantic Technological University", + "type": "Successor", + "id": "https://ror.org/0458dap48" + } + ], + "addresses": [ + { + "lat": 54.26969, + "lng": -8.46943, + "state": null, + "state_code": null, + "city": "Sligo", + "geonames_city": { + "id": 2961423, + "city": "Sligo", + "geonames_admin1": { + "name": "Connaught", + "id": 7521313, + "ascii_name": "Connaught", + "code": "IE.C" + }, + "geonames_admin2": { + "name": "County Sligo", + "id": 2961422, + "ascii_name": "County Sligo", + "code": "IE.C.25" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "http://itsligo.ie/" + ], + "aliases": [ + "Institiúid Teicneolaíochta Sligeach" + ], + "acronyms": [ + "ITS" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institute_of_Technology,_Sligo", + "labels": [ + { + "label": "Institiúid Teicneolaíochta Sligeach", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0488 2696" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "584680" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q11042094" + ] + }, + "GRID": { + "preferred": "grid.418998.5", + "all": "grid.418998.5" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/034ymz395.json b/rc-v1.15/034ymz395.json new file mode 100644 index 000000000..eee3c8637 --- /dev/null +++ b/rc-v1.15/034ymz395.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/034ymz395", + "name": "Art Institute of New York", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/new-york" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Art_Institute_of_New_York_City", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0523 0016" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "14498080" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7714384" + ] + }, + "GRID": { + "preferred": "grid.432135.2", + "all": "grid.432135.2" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/035713c15.json b/rc-v1.15/035713c15.json new file mode 100644 index 000000000..6eaab6ea7 --- /dev/null +++ b/rc-v1.15/035713c15.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/035713c15", + "name": "Koryo International College", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.18147, + "lng": 136.90641, + "state": null, + "state_code": null, + "city": "Nagoya", + "geonames_city": { + "id": 1856057, + "city": "Nagoya", + "geonames_admin1": { + "name": "Aichi", + "id": 1865694, + "ascii_name": "Aichi", + "code": "JP.01" + }, + "geonames_admin2": { + "name": "Nagoya", + "id": 1856053, + "ascii_name": "Nagoya", + "code": "JP.01.1856053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://koryo.nucba.ac.jp/en/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Koryo_International_College", + "labels": [ + { + "label": "光陵女子短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "GRID": { + "preferred": "grid.471701.4", + "all": "grid.471701.4" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/035khj741.json b/rc-v1.15/035khj741.json new file mode 100644 index 000000000..81e94c0f3 --- /dev/null +++ b/rc-v1.15/035khj741.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/035khj741", + "name": "Seibo Jogakuin Junior College", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.02107, + "lng": 135.75385, + "state": null, + "state_code": null, + "city": "Kyoto", + "geonames_city": { + "id": 1857910, + "city": "Kyoto", + "geonames_admin1": { + "name": "Kyoto", + "id": 1857907, + "ascii_name": "Kyoto", + "code": "JP.22" + }, + "geonames_admin2": { + "name": "Kyōto", + "id": 1857906, + "ascii_name": "Kyōto", + "code": "JP.22.1857906" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.seibo.ac.jp/" + ], + "aliases": [ + "Seibo jogakuin tanki daigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Seibo_Jogakuin_Junior_College", + "labels": [ + { + "label": "聖母女学院短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9167 6436" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7446584" + ] + }, + "GRID": { + "preferred": "grid.471994.6", + "all": "grid.471994.6" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/039jjcy66.json b/rc-v1.15/039jjcy66.json new file mode 100644 index 000000000..e726d6c23 --- /dev/null +++ b/rc-v1.15/039jjcy66.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/039jjcy66", + "name": "Mylan (India)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (United States)", + "type": "Parent", + "id": "https://ror.org/04nsw4151" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": 17.38405, + "lng": 78.45636, + "state": null, + "state_code": null, + "city": "Hyderabad", + "geonames_city": { + "id": 1269843, + "city": "Hyderabad", + "geonames_admin1": { + "name": "Telangana", + "id": 1254788, + "ascii_name": "Telangana", + "code": "IN.40" + }, + "geonames_admin2": { + "name": "Hyderabad", + "id": 1269844, + "ascii_name": "Hyderabad", + "code": "IN.40.536" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "http://mylanlabs.in/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1803 0013" + ] + }, + "GRID": { + "preferred": "grid.465008.f", + "all": "grid.465008.f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/039nazg33.json b/rc-v1.15/039nazg33.json new file mode 100644 index 000000000..0a51d412e --- /dev/null +++ b/rc-v1.15/039nazg33.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/039nazg33", + "name": "Institute of Entomology", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Biology Centre of the Czech Academy of Sciences", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "name": "Jihočeský kraj", + "id": 3339537, + "ascii_name": "Jihočeský kraj", + "code": "CZ.79" + }, + "geonames_admin2": { + "name": "České Budějovice District", + "id": 3077915, + "ascii_name": "České Budějovice District", + "code": "CZ.79.0311" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3077311 + } + ], + "links": [ + "http://www.entu.cas.cz/en/" + ], + "aliases": [ + "Entomologický Ústav" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0396 9503" + ] + }, + "GRID": { + "preferred": "grid.447761.7", + "all": "grid.447761.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03a0mw410.json b/rc-v1.15/03a0mw410.json new file mode 100644 index 000000000..85753f918 --- /dev/null +++ b/rc-v1.15/03a0mw410.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/03a0mw410", + "name": "Art Institutes International Minnesota", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "name": "Minnesota", + "id": 5037779, + "ascii_name": "Minnesota", + "code": "US.MN" + }, + "geonames_admin2": { + "name": "Hennepin", + "id": 5029877, + "ascii_name": "Hennepin", + "code": "US.MN.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/minneapolis" + ], + "aliases": [ + "Ai Minnesota" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Art_Institutes_International_Minnesota", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0538 9545" + ] + }, + "GRID": { + "preferred": "grid.465796.f", + "all": "grid.465796.f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03av75f26.json b/rc-v1.15/03av75f26.json new file mode 100644 index 000000000..974d9a776 --- /dev/null +++ b/rc-v1.15/03av75f26.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03av75f26", + "name": "Max Planck Institute for Multidisciplinary Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Max Planck Institute of Experimental Medicine", + "type": "Predecessor", + "id": "https://ror.org/04a7f6w43" + }, + { + "label": "Max Planck Institute for Biophysical Chemistry", + "type": "Predecessor", + "id": "https://ror.org/03e76ya46" + } + ], + "addresses": [ + { + "lat": 51.53443, + "lng": 9.93228, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 2918632, + "city": "Göttingen", + "geonames_admin1": { + "name": "Lower Saxony", + "id": 2862926, + "ascii_name": "Lower Saxony", + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.mpinat.mpg.de/" + ], + "aliases": [], + "acronyms": [ + "MPINAT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Max_Planck_Institute_for_Biophysical_Chemistry", + "labels": [ + { + "label": "Max Planck Institut für Multidisziplinäre Naturwissenschaften", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/rc-v1.15/03baec336.json b/rc-v1.15/03baec336.json new file mode 100644 index 000000000..dac3ff012 --- /dev/null +++ b/rc-v1.15/03baec336.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/03baec336", + "name": "iMinds", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Imec", + "type": "Successor", + "id": "https://ror.org/02kcbn207" + } + ], + "addresses": [ + { + "lat": 51.05, + "lng": 3.71667, + "state": null, + "state_code": null, + "city": "Ghent", + "geonames_city": { + "id": 2797656, + "city": "Ghent", + "geonames_admin1": { + "name": "Flanders", + "id": 3337388, + "ascii_name": "Flanders", + "code": "BE.VLG" + }, + "geonames_admin2": { + "name": "East Flanders Province", + "id": 2789733, + "ascii_name": "East Flanders Province", + "code": "BE.VLG.VOV" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "http://www.iminds.be/en" + ], + "aliases": [], + "acronyms": [ + "IBBT" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/IMinds", + "labels": [ + { + "label": "Interdisciplinary Institute for BroadBand Technology", + "iso639": "en" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9385 0493" + ] + }, + "FundRef": { + "preferred": "501100004003", + "all": [ + "501100004003", + "501100004002" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2208735" + ] + }, + "GRID": { + "preferred": "grid.56912.39", + "all": "grid.56912.39" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03bdvdc06.json b/rc-v1.15/03bdvdc06.json new file mode 100644 index 000000000..6344885f7 --- /dev/null +++ b/rc-v1.15/03bdvdc06.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03bdvdc06", + "name": "Public Library of Science", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Public Library of Science", + "type": "Successor", + "id": "https://ror.org/008zgvp64" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Cambridgeshire", + "id": 2653940, + "ascii_name": "Cambridgeshire", + "code": "GB.ENG.C3" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.plos.org/" + ], + "aliases": [], + "acronyms": [ + "PLOS" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "preferred": "grid.466955.d", + "all": "grid.466955.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03e76ya46.json b/rc-v1.15/03e76ya46.json new file mode 100644 index 000000000..14456b45f --- /dev/null +++ b/rc-v1.15/03e76ya46.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/03e76ya46", + "name": "Max Planck Institute for Biophysical Chemistry", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + }, + { + "label": "Max Planck Institute for Multidisciplinary Sciences", + "type": "Successor", + "id": "https://ror.org/03av75f26" + } + ], + "addresses": [ + { + "lat": 51.53443, + "lng": 9.93228, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 2918632, + "city": "Göttingen", + "geonames_admin1": { + "name": "Lower Saxony", + "id": 2862926, + "ascii_name": "Lower Saxony", + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.mpibpc.mpg.de/en" + ], + "aliases": [ + "Karl Friedrich Bonhoeffer Institute" + ], + "acronyms": [ + "MPIbpc" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Max_Planck_Institute_for_Biophysical_Chemistry", + "labels": [ + { + "label": "Max-Planck-Institut für Biophysikalische Chemie", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2104 4211" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2303003" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q836125" + ] + }, + "GRID": { + "preferred": "grid.418140.8", + "all": "grid.418140.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03hv1ad10.json b/rc-v1.15/03hv1ad10.json new file mode 100644 index 000000000..c08a32067 --- /dev/null +++ b/rc-v1.15/03hv1ad10.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03hv1ad10", + "name": "Akita University", + "email_address": "", + "ip_addresses": [], + "established": 1949, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Akita University Hospital", + "type": "Related", + "id": "https://ror.org/02szmmq82" + } + ], + "addresses": [ + { + "lat": 39.71667, + "lng": 140.11667, + "state": null, + "state_code": null, + "city": "Akita", + "geonames_city": { + "id": 2113126, + "city": "Akita", + "geonames_admin1": { + "name": "Akita", + "id": 2113124, + "ascii_name": "Akita", + "code": "JP.02" + }, + "geonames_admin2": { + "name": "Akita Shi", + "id": 2113122, + "ascii_name": "Akita Shi", + "code": "JP.02.2113122" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.akita-u.ac.jp/eng/" + ], + "aliases": [ + "Akita Daigaku" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Akita_University", + "labels": [ + { + "label": "秋田大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0725 8504" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4294843" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1340164" + ] + }, + "GRID": { + "preferred": "grid.251924.9", + "all": "grid.251924.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03jq8sq82.json b/rc-v1.15/03jq8sq82.json new file mode 100644 index 000000000..6168b2350 --- /dev/null +++ b/rc-v1.15/03jq8sq82.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03jq8sq82", + "name": "Mylan (Sweden)", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (United States)", + "type": "Parent", + "id": "https://ror.org/04nsw4151" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "name": "Stockholm", + "id": 2673722, + "ascii_name": "Stockholm", + "code": "SE.26" + }, + "geonames_admin2": { + "name": "Stockholm Municipality", + "id": 2673723, + "ascii_name": "Stockholm Municipality", + "code": "SE.26.0180" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2661886 + } + ], + "links": [ + "http://www.mylan.se" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "GRID": { + "preferred": "grid.487435.9", + "all": "grid.487435.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03kw7j946.json b/rc-v1.15/03kw7j946.json new file mode 100644 index 000000000..497264828 --- /dev/null +++ b/rc-v1.15/03kw7j946.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03kw7j946", + "name": "Yamawaki Gakuen Junior College", + "email_address": null, + "ip_addresses": [], + "established": 1903, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.yamawaki-gakuen.ac.jp/" + ], + "aliases": [ + "Yamawaki Gakuen Tanki Daigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Yamawaki_Gakuen_Junior_College", + "labels": [ + { + "label": "山脇学園短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0643 0757" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q8048007" + ] + }, + "GRID": { + "preferred": "grid.474918.7", + "all": "grid.474918.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03q0p7c86.json b/rc-v1.15/03q0p7c86.json new file mode 100644 index 000000000..b264d7090 --- /dev/null +++ b/rc-v1.15/03q0p7c86.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03q0p7c86", + "name": "Center of Regenerative Medicine in Barcelona", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "CERCA Institution", + "type": "Parent", + "id": "https://ror.org/01bkbaq61" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.cmrb.eu/en_index.html" + ], + "aliases": [], + "acronyms": [ + "CMR", + "CMR-CERCA" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5930 4682" + ] + }, + "GRID": { + "preferred": "grid.434617.3", + "all": "grid.434617.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03r10zj06.json b/rc-v1.15/03r10zj06.json new file mode 100644 index 000000000..a2359de41 --- /dev/null +++ b/rc-v1.15/03r10zj06.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03r10zj06", + "name": "National Center for Supercomputing Applications", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University of Illinois Urbana-Champaign", + "type": "Parent", + "id": "https://ror.org/047426m28" + } + ], + "addresses": [ + { + "lat": 40.11059, + "lng": -88.20727, + "state": null, + "state_code": null, + "city": "Urbana", + "geonames_city": { + "id": 4914570, + "city": "Urbana", + "geonames_admin1": { + "name": "Illinois", + "id": 4896861, + "ascii_name": "Illinois", + "code": "US.IL" + }, + "geonames_admin2": { + "name": "Champaign", + "id": 4887163, + "ascii_name": "Champaign", + "code": "US.IL.019" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.ncsa.illinois.edu/" + ], + "aliases": [], + "acronyms": [ + "NCSA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Center_for_Supercomputing_Applications", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9934 8971" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100010548" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1190772" + ] + }, + "GRID": { + "preferred": "grid.505692.d", + "all": "grid.505692.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03sbpja79.json b/rc-v1.15/03sbpja79.json new file mode 100644 index 000000000..020b5518d --- /dev/null +++ b/rc-v1.15/03sbpja79.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/03sbpja79", + "name": "Department of Health and Social Care", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Genomics England", + "type": "Child", + "id": "https://ror.org/04rxxfz69" + }, + { + "label": "Health Education England", + "type": "Child", + "id": "https://ror.org/00scx1h10" + }, + { + "label": "Human Fertilisation and Embryology Authority", + "type": "Child", + "id": "https://ror.org/023y2na82" + }, + { + "label": "UK Health Security Agency", + "type": "Child", + "id": "https://ror.org/018h10037" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.gov.uk/government/organisations/department-of-health" + ], + "aliases": [], + "acronyms": [ + "DHSC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Department_of_Health_(United_Kingdom)", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "preferred": null, + "all": [ + "501100000276" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "373579" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3044742" + ] + }, + "GRID": { + "preferred": "grid.57981.32", + "all": "grid.57981.32" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03st4v061.json b/rc-v1.15/03st4v061.json new file mode 100644 index 000000000..2632e7c37 --- /dev/null +++ b/rc-v1.15/03st4v061.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/03st4v061", + "name": "Fukuoka International University", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.51278, + "lng": 130.52389, + "state": null, + "state_code": null, + "city": "Dazaifu", + "geonames_city": { + "id": 7422816, + "city": "Dazaifu", + "geonames_admin1": { + "name": "Fukuoka", + "id": 1863958, + "ascii_name": "Fukuoka", + "code": "JP.07" + }, + "geonames_admin2": { + "name": "Dazaifu-shi", + "id": 1864394, + "ascii_name": "Dazaifu-shi", + "code": "JP.07.1864394" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.fukuoka-int-u.ac.jp/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fukuoka_International_University", + "labels": [ + { + "label": "福岡国際大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0374 9105" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "16892135" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5507688" + ] + }, + "GRID": { + "preferred": "grid.443459.b", + "all": "grid.443459.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03wkq5991.json b/rc-v1.15/03wkq5991.json new file mode 100644 index 000000000..0b3fd41b3 --- /dev/null +++ b/rc-v1.15/03wkq5991.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03wkq5991", + "name": "USP Institut Universitari Dexeus", + "email_address": "", + "ip_addresses": [], + "established": 1935, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Hospital Universitario Dexeus", + "type": "Successor", + "id": "https://ror.org/00scfzf83" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.quiron.es/es/barcelona_dexeus" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8868 9957" + ] + }, + "GRID": { + "preferred": "grid.411721.0", + "all": "grid.411721.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03x8rdd89.json b/rc-v1.15/03x8rdd89.json new file mode 100644 index 000000000..013b15d4a --- /dev/null +++ b/rc-v1.15/03x8rdd89.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03x8rdd89", + "name": "Białystok School of Public Administration", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.13333, + "lng": 23.16433, + "state": null, + "state_code": null, + "city": "Bialystok", + "geonames_city": { + "id": 776069, + "city": "Bialystok", + "geonames_admin1": { + "name": "Podlasie", + "id": 858789, + "ascii_name": "Podlasie", + "code": "PL.81" + }, + "geonames_admin2": { + "name": "Białystok", + "id": 7530772, + "ascii_name": "Białystok", + "code": "PL.81.2061" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 798544 + } + ], + "links": [ + "http://wsap.edu.pl/" + ], + "aliases": [], + "acronyms": [ + "WSAP" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bia%C5%82ystok_School_of_Public_Administration", + "labels": [ + { + "label": "Wyższa Szkoła Administracji Publicznej w Białymstoku", + "iso639": "pl" + } + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1373 8926" + ] + }, + "GRID": { + "preferred": "grid.465851.b", + "all": "grid.465851.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03y81da23.json b/rc-v1.15/03y81da23.json new file mode 100644 index 000000000..f107f772a --- /dev/null +++ b/rc-v1.15/03y81da23.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/03y81da23", + "name": "Laboratory of Hydrology and Geochemistry", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "Parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Earth and Environment Institute of Strasbourg", + "type": "Successor", + "id": "https://ror.org/0530qwm02" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://lhyges.unistra.fr/-Generale-?lang=en" + ], + "aliases": [], + "acronyms": [ + "LHyGes" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Laboratoire d’HYdrologie et de GEochimie", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2299 9140" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR7517" + ] + }, + "GRID": { + "preferred": "grid.469417.9", + "all": "grid.469417.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03ybx0x41.json b/rc-v1.15/03ybx0x41.json new file mode 100644 index 000000000..bd82bf9fb --- /dev/null +++ b/rc-v1.15/03ybx0x41.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03ybx0x41", + "name": "Department of Biomedicine Basel", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University Children’s Hospital Basel", + "type": "Parent", + "id": "https://ror.org/02nhqek82" + }, + { + "label": "University Hospital of Basel", + "type": "Parent", + "id": "https://ror.org/04k51q396" + }, + { + "label": "University of Basel", + "type": "Parent", + "id": "https://ror.org/02s6k3f65" + }, + { + "label": "University of Basel", + "type": "Successor", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://biomedizin.unibas.ch/" + ], + "aliases": [ + "Department of Biological and Clinical Sciences" + ], + "acronyms": [ + "DBM" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q22387380" + ] + }, + "GRID": { + "preferred": "grid.509969.a", + "all": "grid.509969.a" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03yfxw954.json b/rc-v1.15/03yfxw954.json new file mode 100644 index 000000000..3a9f16ffe --- /dev/null +++ b/rc-v1.15/03yfxw954.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03yfxw954", + "name": "Suzugamine Women's College", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Hiroshima Shudo University", + "type": "Successor", + "id": "https://ror.org/05n757p35" + } + ], + "addresses": [ + { + "lat": 34.4, + "lng": 132.45, + "state": null, + "state_code": null, + "city": "Hiroshima", + "geonames_city": { + "id": 1862415, + "city": "Hiroshima", + "geonames_admin1": { + "name": "Hiroshima", + "id": 1862413, + "ascii_name": "Hiroshima", + "code": "JP.11" + }, + "geonames_admin2": { + "name": "Hiroshima City", + "id": 1862412, + "ascii_name": "Hiroshima City", + "code": "JP.11.1862412" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.suzugamine.ac.jp/" + ], + "aliases": [ + "Suzugamine joshi tanki daigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Suzugamine_Women%27s_College", + "labels": [ + { + "label": "鈴峯女子短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0359 9635" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7651151" + ] + }, + "GRID": { + "preferred": "grid.472038.a", + "all": "grid.472038.a" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/03yp23s77.json b/rc-v1.15/03yp23s77.json new file mode 100644 index 000000000..a0c9b4749 --- /dev/null +++ b/rc-v1.15/03yp23s77.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03yp23s77", + "name": "Nagano Prefectural College", + "email_address": null, + "ip_addresses": [], + "established": 1929, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.65, + "lng": 138.18333, + "state": null, + "state_code": null, + "city": "Nagano", + "geonames_city": { + "id": 1856215, + "city": "Nagano", + "geonames_admin1": { + "name": "Nagano", + "id": 1856210, + "ascii_name": "Nagano", + "code": "JP.26" + }, + "geonames_admin2": { + "name": "Nagano Shi", + "id": 1856209, + "ascii_name": "Nagano Shi", + "code": "JP.26.1856209" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.nagano-kentan.ac.jp/" + ], + "aliases": [ + "Nagano-ken Tanki Daigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nagano_Prefectural_College", + "labels": [ + { + "label": "長野県短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0288 7328" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "24375341" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6958442" + ] + }, + "GRID": { + "preferred": "grid.469037.f", + "all": "grid.469037.f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0436nxt45.json b/rc-v1.15/0436nxt45.json new file mode 100644 index 000000000..e742a50aa --- /dev/null +++ b/rc-v1.15/0436nxt45.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0436nxt45", + "name": "Institute of Hydrobiology, Biology Centre, Academy of Sciences of the Czech Republic", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Biology Centre of the Czech Academy of Sciences", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "name": "Jihočeský kraj", + "id": 3339537, + "ascii_name": "Jihočeský kraj", + "code": "CZ.79" + }, + "geonames_admin2": { + "name": "České Budějovice District", + "id": 3077915, + "ascii_name": "České Budějovice District", + "code": "CZ.79.0311" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3077311 + } + ], + "links": [ + "http://www.hbu.cas.cz/" + ], + "aliases": [ + "Academy of Sciences of the Czech Republic Institute of Hydrobiology", + "Akademie Ved Ceske Republiky Hydrobiologicky Ustav" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Hydrobiologický Ústav Biologické Centrum AV ČR", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "preferred": "grid.448010.9", + "all": "grid.448010.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/044cqdj35.json b/rc-v1.15/044cqdj35.json new file mode 100644 index 000000000..6b43c8cce --- /dev/null +++ b/rc-v1.15/044cqdj35.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/044cqdj35", + "name": "Mie Chukyo University", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.73333, + "lng": 136.51667, + "state": null, + "state_code": null, + "city": "Tsu", + "geonames_city": { + "id": 1849796, + "city": "Tsu", + "geonames_admin1": { + "name": "Mie", + "id": 1857352, + "ascii_name": "Mie", + "code": "JP.23" + }, + "geonames_admin2": { + "name": "Tsu", + "id": 1849544, + "ascii_name": "Tsu", + "code": "JP.23.1849544" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.mie-chukyo-u.ac.jp" + ], + "aliases": [ + "Matsusaka University" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mie_Chukyo_University", + "labels": [ + { + "label": "三重中京大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0612 8791" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "17204787" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q11357654" + ] + }, + "GRID": { + "preferred": "grid.444252.1", + "all": "grid.444252.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0458dap48.json b/rc-v1.15/0458dap48.json new file mode 100644 index 000000000..5ae7a7089 --- /dev/null +++ b/rc-v1.15/0458dap48.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0458dap48", + "name": "Atlantic Technological University", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Galway-Mayo Institute of Technology", + "type": "Predecessor", + "id": "https://ror.org/024j9sx72" + }, + { + "label": "Letterkenny Institute of Technology", + "type": "Predecessor", + "id": "https://ror.org/04ps1tq95" + }, + { + "label": "Institute of Technology Sligo", + "type": "Predecessor", + "id": "https://ror.org/032fvf508" + } + ], + "addresses": [ + { + "lat": 54.26969, + "lng": -8.46943, + "state": null, + "state_code": null, + "city": "Sligo", + "geonames_city": { + "id": 2961423, + "city": "Sligo", + "geonames_admin1": { + "name": "Connaught", + "id": 7521313, + "ascii_name": "Connaught", + "code": "IE.C" + }, + "geonames_admin2": { + "name": "County Sligo", + "id": 2961422, + "ascii_name": "County Sligo", + "code": "IE.C.25" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "https://www.atu.ie" + ], + "aliases": [ + "Atlantic TU" + ], + "acronyms": [ + "ATU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Atlantic_Technological_University", + "labels": [ + { + "label": "Ollscoil Teicheolaíochta an Atlantaigh", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q58310020", + "all": [ + "Q58310020" + ] + } + } +} \ No newline at end of file diff --git a/rc-v1.15/045sjkt56.json b/rc-v1.15/045sjkt56.json new file mode 100644 index 000000000..8115e484b --- /dev/null +++ b/rc-v1.15/045sjkt56.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/045sjkt56", + "name": "Mylan (Switzerland)", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (United States)", + "type": "Parent", + "id": "https://ror.org/04nsw4151" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "name": "Zurich", + "id": 2657895, + "ascii_name": "Zurich", + "code": "CH.ZH" + }, + "geonames_admin2": { + "name": "Zürich District", + "id": 6458798, + "ascii_name": "Zürich District", + "code": "CH.ZH.112" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://www.mylan.ch/" + ], + "aliases": [ + "Milan" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mylan", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30269165" + ] + }, + "GRID": { + "preferred": "grid.476546.2", + "all": "grid.476546.2" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/049922318.json b/rc-v1.15/049922318.json new file mode 100644 index 000000000..7523537cc --- /dev/null +++ b/rc-v1.15/049922318.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/049922318", + "name": "SuperGen (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Astex Pharmaceuticals", + "type": "Successor", + "id": "https://ror.org/05fx1fs38" + } + ], + "addresses": [ + { + "lat": 37.70215, + "lng": -121.93579, + "state": null, + "state_code": null, + "city": "Dublin", + "geonames_city": { + "id": 5344157, + "city": "Dublin", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://supergen.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0411 1795" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30289031" + ] + }, + "GRID": { + "preferred": "grid.430719.8", + "all": "grid.430719.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/049ph2k85.json b/rc-v1.15/049ph2k85.json new file mode 100644 index 000000000..3d151af1a --- /dev/null +++ b/rc-v1.15/049ph2k85.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/049ph2k85", + "name": "University of Creation Art, Music & Social Work", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.33333, + "lng": 139.01667, + "state": null, + "state_code": null, + "city": "Takasaki", + "geonames_city": { + "id": 1851002, + "city": "Takasaki", + "geonames_admin1": { + "name": "Gunma", + "id": 1863501, + "ascii_name": "Gunma", + "code": "JP.10" + }, + "geonames_admin2": { + "name": "Takasaki Shi", + "id": 1850994, + "ascii_name": "Takasaki Shi", + "code": "JP.10.1850994" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://souzou.ac.jp/" + ], + "aliases": [ + "Souzou Gakuen University" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Creation;_Art,_Music_%26_Social_Work", + "labels": [ + { + "label": "創造学園大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1764 0899" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7895314" + ] + }, + "GRID": { + "preferred": "grid.444876.d", + "all": "grid.444876.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04a7f6w43.json b/rc-v1.15/04a7f6w43.json new file mode 100644 index 000000000..89c2d6569 --- /dev/null +++ b/rc-v1.15/04a7f6w43.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/04a7f6w43", + "name": "Max Planck Institute of Experimental Medicine", + "email_address": "", + "ip_addresses": [], + "established": 1947, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + }, + { + "label": "Max Planck Institute for Multidisciplinary Sciences", + "type": "Successor", + "id": "https://ror.org/03av75f26" + } + ], + "addresses": [ + { + "lat": 51.53443, + "lng": 9.93228, + "state": null, + "state_code": null, + "city": "Göttingen", + "geonames_city": { + "id": 2918632, + "city": "Göttingen", + "geonames_admin1": { + "name": "Lower Saxony", + "id": 2862926, + "ascii_name": "Lower Saxony", + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.em.mpg.de/index.php?id=1&L=1" + ], + "aliases": [], + "acronyms": [ + "MPIEM" + ], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Max_Planck_Institute_for_Experimental_Medicine", + "labels": [ + { + "label": "Max-Planck-Institut für Experimentelle Medizin", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0668 6902" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "6745934" + ] + }, + "Wikidata": { + "preferred": "Q1912106", + "all": [ + "Q1912106" + ] + }, + "GRID": { + "preferred": "grid.419522.9", + "all": "grid.419522.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04babsy72.json b/rc-v1.15/04babsy72.json new file mode 100644 index 000000000..f9dfcfa39 --- /dev/null +++ b/rc-v1.15/04babsy72.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/04babsy72", + "name": "Indigenous Services Canada", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Aboriginal Affairs Northern Dev Canada", + "type": "Predecessor", + "id": "https://ror.org/05pgxdd43" + } + ], + "addresses": [ + { + "lat": 45.47723, + "lng": -75.70164, + "state": null, + "state_code": null, + "city": "Gatineau", + "geonames_city": { + "id": 5959974, + "city": "Gatineau", + "geonames_admin1": { + "name": "Quebec", + "id": 6115047, + "ascii_name": "Quebec", + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Outaouais", + "id": 6095306, + "ascii_name": "Outaouais", + "code": "CA.10.07" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://www.sac-isc.gc.ca" + ], + "aliases": [], + "acronyms": [ + "ISC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indigenous_Services_Canada", + "labels": [ + { + "label": "Services aux Autochtones Canada", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "FundRef": { + "preferred": "501100013971", + "all": [ + "501100013971" + ] + }, + "Wikidata": { + "preferred": "Q85846156", + "all": [ + "Q85846156" + ] + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04br0rs05.json b/rc-v1.15/04br0rs05.json new file mode 100644 index 000000000..d2fbb0ec9 --- /dev/null +++ b/rc-v1.15/04br0rs05.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/04br0rs05", + "name": "Health Sciences North", + "email_address": "", + "ip_addresses": [], + "established": 1997, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Northeast Cancer Centre", + "type": "Child", + "id": "https://ror.org/01g1qg816" + } + ], + "addresses": [ + { + "lat": 46.49, + "lng": -80.99001, + "state": null, + "state_code": null, + "city": "Sudbury", + "geonames_city": { + "id": 5964700, + "city": "Sudbury", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.hsnsudbury.ca/portalen/" + ], + "aliases": [], + "acronyms": [ + "HSN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Health_Sciences_North", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9741 4533" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "372703" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5690659" + ] + }, + "GRID": { + "preferred": "grid.420638.b", + "all": "grid.420638.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04dstfg97.json b/rc-v1.15/04dstfg97.json new file mode 100644 index 000000000..7c4d5c4de --- /dev/null +++ b/rc-v1.15/04dstfg97.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04dstfg97", + "name": "Sholokhov Moscow State University for Humanities", + "email_address": null, + "ip_addresses": [], + "established": 1951, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Moscow State Pedagogical University", + "type": "Successor", + "id": "https://ror.org/03a9mf398" + } + ], + "addresses": [ + { + "lat": 55.75222, + "lng": 37.61556, + "state": null, + "state_code": null, + "city": "Moscow", + "geonames_city": { + "id": 524901, + "city": "Moscow", + "geonames_admin1": { + "name": "Moscow", + "id": 524894, + "ascii_name": "Moscow", + "code": "RU.48" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2017370 + } + ], + "links": [ + "http://www.mggu-sh.ru/" + ], + "aliases": [ + "Moscow State University for Humanities named after M.A. Sholokhov" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sholokhov_Moscow_State_University_for_Humanities", + "labels": [ + { + "label": "Московский государственный гуманитарный университет имени М. А. Шолохова", + "iso639": "ru" + } + ], + "country": { + "country_name": "Russia", + "country_code": "RU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0370 2102" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "9597908" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4304073" + ] + }, + "GRID": { + "preferred": "grid.446226.0", + "all": "grid.446226.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04dy1nt28.json b/rc-v1.15/04dy1nt28.json new file mode 100644 index 000000000..546afb956 --- /dev/null +++ b/rc-v1.15/04dy1nt28.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04dy1nt28", + "name": "Narabunka Women's College", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.68505, + "lng": 135.80485, + "state": null, + "state_code": null, + "city": "Nara", + "geonames_city": { + "id": 1855612, + "city": "Nara", + "geonames_admin1": { + "name": "Nara", + "id": 1855608, + "ascii_name": "Nara", + "code": "JP.28" + }, + "geonames_admin2": { + "name": "Nara-shi", + "id": 1855604, + "ascii_name": "Nara-shi", + "code": "JP.28.1855604" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.narabunka.ac.jp/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Narabunka_Women%27s_College", + "labels": [ + { + "label": "奈良文化女子短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0621 1319" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6965248" + ] + }, + "GRID": { + "preferred": "grid.471843.d", + "all": "grid.471843.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04ec98z42.json b/rc-v1.15/04ec98z42.json new file mode 100644 index 000000000..1c77354e0 --- /dev/null +++ b/rc-v1.15/04ec98z42.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/04ec98z42", + "name": "Princess Margaret Hospital for Children", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Government of Western Australia Department of Health", + "type": "Parent", + "id": "https://ror.org/01epcny94" + }, + { + "label": "Perth Children's Hospital", + "type": "Related", + "id": "https://ror.org/015zx6n37" + }, + { + "label": "Perth Children's Hospital", + "type": "Successor", + "id": "https://ror.org/015zx6n37" + } + ], + "addresses": [ + { + "lat": -31.95224, + "lng": 115.8614, + "state": null, + "state_code": null, + "city": "Perth", + "geonames_city": { + "id": 2063523, + "city": "Perth", + "geonames_admin1": { + "name": "Western Australia", + "id": 2058645, + "ascii_name": "Western Australia", + "code": "AU.08" + }, + "geonames_admin2": { + "name": "Perth", + "id": 2063522, + "ascii_name": "Perth", + "code": "AU.08.57080" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "http://www.pmh.health.wa.gov.au/" + ], + "aliases": [ + "Perth Children's Hospital" + ], + "acronyms": [ + "PMH" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Princess_Margaret_Hospital_for_Children", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0625 8600" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4470254" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7244698" + ] + }, + "GRID": { + "preferred": "grid.410667.2", + "all": "grid.410667.2" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04efm0253.json b/rc-v1.15/04efm0253.json new file mode 100644 index 000000000..c7d6e8b74 --- /dev/null +++ b/rc-v1.15/04efm0253.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/04efm0253", + "name": "Technological University of the Shannon: Midlands Midwest", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Athlone Institute of Technology", + "type": "Predecessor", + "id": "https://ror.org/02dyxwz31" + }, + { + "label": "Limerick Institute of Technology", + "type": "Predecessor", + "id": "https://ror.org/0269ncv24" + } + ], + "addresses": [ + { + "lat": 53.42278, + "lng": -7.93722, + "state": null, + "state_code": null, + "city": "Athlone", + "geonames_city": { + "id": 3313472, + "city": "Athlone", + "geonames_admin1": { + "name": "Leinster", + "id": 7521314, + "ascii_name": "Leinster", + "code": "IE.L" + }, + "geonames_admin2": { + "name": "County Westmeath", + "id": 2960972, + "ascii_name": "County Westmeath", + "code": "IE.L.29" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "https://tus.ie/" + ], + "aliases": [], + "acronyms": [ + "TUS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Technological_University_of_the_Shannon%3A_Midlands_Midwest", + "labels": [ + { + "label": "Ollscoil Teicneolaíochta na Sionainne: Lár Tíre Iarthar Láir", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q106646552", + "all": [ + "Q106646552" + ] + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04fmf8z66.json b/rc-v1.15/04fmf8z66.json new file mode 100644 index 000000000..6c546e1de --- /dev/null +++ b/rc-v1.15/04fmf8z66.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04fmf8z66", + "name": "Mylan (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (United States)", + "type": "Parent", + "id": "https://ror.org/04nsw4151" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "name": "Hesse", + "id": 2905330, + "ascii_name": "Hesse", + "code": "DE.05" + }, + "geonames_admin2": { + "name": "Regierungsbezirk Darmstadt", + "id": 2938912, + "ascii_name": "Regierungsbezirk Darmstadt", + "code": "DE.05.064" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.mylan-dura.de/" + ], + "aliases": [ + "UDL Laboratories, Inc." + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mylan", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0499 6052" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30269109" + ] + }, + "GRID": { + "preferred": "grid.476483.a", + "all": "grid.476483.a" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04g7y4303.json b/rc-v1.15/04g7y4303.json new file mode 100644 index 000000000..4e971bf3f --- /dev/null +++ b/rc-v1.15/04g7y4303.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04g7y4303", + "name": "Ernest Gallo Clinic and Research Center", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.83132, + "lng": -122.28525, + "state": null, + "state_code": null, + "city": "Emeryville", + "geonames_city": { + "id": 5346462, + "city": "Emeryville", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.egcrc.org/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0633 1441" + ] + }, + "GRID": { + "preferred": "grid.280428.4", + "all": "grid.280428.4" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04jsh0z47.json b/rc-v1.15/04jsh0z47.json new file mode 100644 index 000000000..10d1afe15 --- /dev/null +++ b/rc-v1.15/04jsh0z47.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04jsh0z47", + "name": "Fukuoka Social Medical Welfare University", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 33.51278, + "lng": 130.52389, + "state": null, + "state_code": null, + "city": "Dazaifu", + "geonames_city": { + "id": 7422816, + "city": "Dazaifu", + "geonames_admin1": { + "name": "Fukuoka", + "id": 1863958, + "ascii_name": "Fukuoka", + "code": "JP.07" + }, + "geonames_admin2": { + "name": "Dazaifu-shi", + "id": 1864394, + "ascii_name": "Dazaifu-shi", + "code": "JP.07.1864394" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.dfu.ac.jp/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fukuoka_Social_Medical_Welfare_University", + "labels": [ + { + "label": "福岡医療福祉大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0621 5053" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "16892217" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5507700" + ] + }, + "GRID": { + "preferred": "grid.443467.6", + "all": "grid.443467.6" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04k443z34.json b/rc-v1.15/04k443z34.json new file mode 100644 index 000000000..8d3597ed8 --- /dev/null +++ b/rc-v1.15/04k443z34.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/04k443z34", + "name": "Mylan (Italy)", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (United States)", + "type": "Parent", + "id": "https://ror.org/04nsw4151" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": 45.58005, + "lng": 9.27246, + "state": null, + "state_code": null, + "city": "Monza", + "geonames_city": { + "id": 3172629, + "city": "Monza", + "geonames_admin1": { + "name": "Lombardy", + "id": 3174618, + "ascii_name": "Lombardy", + "code": "IT.09" + }, + "geonames_admin2": { + "name": "Monza Brianza", + "id": 6955700, + "ascii_name": "Monza Brianza", + "code": "IT.09.MB" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.mylan.com/" + ], + "aliases": [ + "UDL Laboratories, Inc." + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mylan", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1757 5644" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2168978" + ] + }, + "GRID": { + "preferred": "grid.419271.8", + "all": "grid.419271.8" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04k51q396.json b/rc-v1.15/04k51q396.json new file mode 100644 index 000000000..36f78f5a2 --- /dev/null +++ b/rc-v1.15/04k51q396.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/04k51q396", + "name": "University Hospital of Basel", + "email_address": null, + "ip_addresses": [], + "established": 1083, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Basel", + "type": "Related", + "id": "https://ror.org/02s6k3f65" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unispital-basel.ch/" + ], + "aliases": [], + "acronyms": [ + "USB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospital_of_Basel", + "labels": [ + { + "label": "Universitätsspital Basel", + "iso639": "de" + }, + { + "label": "University Hospital of Basel", + "iso639": "en" + }, + { + "label": "Hôpital universitaire de Bâle", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1882 505X", + "all": [ + "0000 0001 1882 505X" + ] + }, + "FundRef": { + "preferred": "100016015", + "all": [ + "100016015" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "40190980" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1689257" + ] + }, + "GRID": { + "preferred": "grid.410567.1", + "all": "grid.410567.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04kdfz702.json b/rc-v1.15/04kdfz702.json new file mode 100644 index 000000000..9ff416a00 --- /dev/null +++ b/rc-v1.15/04kdfz702.json @@ -0,0 +1,394 @@ +{ + "id": "https://ror.org/04kdfz702", + "name": "Institut National des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Besançon Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/032582s48" + }, + { + "label": "Centre National de Recherches Météorologiques", + "type": "Child", + "id": "https://ror.org/004rej139" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Centre for Research and Teaching in Environmental Geoscience", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "GeoAzur", + "type": "Child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Geosciences Paris Sud", + "type": "Child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Géosciences Environnement Toulouse", + "type": "Child", + "id": "https://ror.org/05k0qmv73" + }, + { + "label": "Géosciences Montpellier", + "type": "Child", + "id": "https://ror.org/024gts110" + }, + { + "label": "Géosciences Rennes", + "type": "Child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Haute-Provence Observatory", + "type": "Child", + "id": "https://ror.org/01gtjxz83" + }, + { + "label": "Institut UTINAM", + "type": "Child", + "id": "https://ror.org/02h0g9r59" + }, + { + "label": "Institut d'Astrophysique de Paris", + "type": "Child", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "Child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "Child", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "Child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "Child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "Child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "Interdisciplinary Laboratory for Continental Environments", + "type": "Child", + "id": "https://ror.org/05je79696" + }, + { + "label": "LIttoral, ENvironment and Societies", + "type": "Child", + "id": "https://ror.org/00r8amq78" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "Child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "Child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire Sciences de l'Univers au Cerfacs", + "type": "Child", + "id": "https://ror.org/03ck9wz82" + }, + { + "label": "Laboratoire d'Aérologie", + "type": "Child", + "id": "https://ror.org/017d9yp59" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "Child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'Optique Atmosphérique", + "type": "Child", + "id": "https://ror.org/02mdnkg28" + }, + { + "label": "Laboratoire de Glaciologie et Géophysique de l’Environnement", + "type": "Child", + "id": "https://ror.org/03fgt5a62" + }, + { + "label": "Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement", + "type": "Child", + "id": "https://ror.org/04t89f389" + }, + { + "label": "Laboratoire de Géologie de l’École Normale Supérieure", + "type": "Child", + "id": "https://ror.org/05vg9cw43" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "Child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Météorologie Physique", + "type": "Child", + "id": "https://ror.org/03gz4y884" + }, + { + "label": "Laboratoire de Planétologie et Géosciences", + "type": "Child", + "id": "https://ror.org/04fm0sh33" + }, + { + "label": "Laboratoire de l'Atmosphère et des Cyclones", + "type": "Child", + "id": "https://ror.org/03wsemq03" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "Child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire d’Astrophysique de Marseille", + "type": "Child", + "id": "https://ror.org/00ssy9q55" + }, + { + "label": "Laboratoire d’Océanologie et de Géosciences", + "type": "Child", + "id": "https://ror.org/05m14rs93" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "Child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Laboratory HydroSciences Montpellier", + "type": "Child", + "id": "https://ror.org/00aycez97" + }, + { + "label": "Laboratory Universe and Theories", + "type": "Child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Ocean Physics and Satellite Remote Sensing", + "type": "Child", + "id": "https://ror.org/03rtw5049" + }, + { + "label": "Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres", + "type": "Child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "Child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratory of Microbial Oceanography", + "type": "Child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratory of Space Studies and Instrumentation in Astrophysics", + "type": "Child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "Child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Lagrange Laboratory", + "type": "Child", + "id": "https://ror.org/02fdv8735" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "Child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Observatoire des Sciences de l'Univers de la Réunion", + "type": "Child", + "id": "https://ror.org/05mv3tj33" + }, + { + "label": "Observatoires des Sciences de l'Univers", + "type": "Child", + "id": "https://ror.org/040bzgy82" + }, + { + "label": "Observatory of Strasbourg", + "type": "Child", + "id": "https://ror.org/04xsj2p07" + }, + { + "label": "Research Institute in Astrophysics and Planetology", + "type": "Child", + "id": "https://ror.org/05hm2ja81" + }, + { + "label": "Sytèmes de Référence Temps Espace", + "type": "Child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Villefranche Oceanographic Laboratory", + "type": "Child", + "id": "https://ror.org/05r5y6641" + } + ], + "addresses": [ + { + "lat": 48.79395, + "lng": 2.49323, + "state": null, + "state_code": null, + "city": "Saint-Maur-des-Fossés", + "geonames_city": { + "id": 2978179, + "city": "Saint-Maur-des-Fossés", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.insu.cnrs.fr/en" + ], + "aliases": [], + "acronyms": [ + "INSU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2154 1736" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004617" + ] + }, + "GRID": { + "preferred": "grid.452348.c", + "all": "grid.452348.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04mczx267.json b/rc-v1.15/04mczx267.json new file mode 100644 index 000000000..307a9cdb7 --- /dev/null +++ b/rc-v1.15/04mczx267.json @@ -0,0 +1,173 @@ +{ + "id": "https://ror.org/04mczx267", + "name": "National Academy of Sciences of Armenia", + "email_address": "", + "ip_addresses": [], + "established": 1943, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Byurakan Astrophysical Observatory", + "type": "Child", + "id": "https://ror.org/0010mjy66" + }, + { + "label": "H.Buniatian Institute of Biochemistry", + "type": "Child", + "id": "https://ror.org/01gpc1r56" + }, + { + "label": "Institute for Informatics and Automation Problems", + "type": "Child", + "id": "https://ror.org/04a8k4p47" + }, + { + "label": "Institute for Physical Research", + "type": "Child", + "id": "https://ror.org/0187pag34" + }, + { + "label": "Institute of Archaeology and Ethnography", + "type": "Child", + "id": "https://ror.org/02af4h206" + }, + { + "label": "Institute of Botany", + "type": "Child", + "id": "https://ror.org/05mpgew40" + }, + { + "label": "Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry", + "type": "Child", + "id": "https://ror.org/00588h422" + }, + { + "label": "Institute of Geological Sciences", + "type": "Child", + "id": "https://ror.org/03r6rhw30" + }, + { + "label": "Institute of Molecular Biology", + "type": "Child", + "id": "https://ror.org/03t8mqd25" + }, + { + "label": "Institute of Philosophy, Sociology and Law", + "type": "Child", + "id": "https://ror.org/02b7e7p97" + }, + { + "label": "Institute of Radiophysics and Electronics", + "type": "Child", + "id": "https://ror.org/051jgxz75" + }, + { + "label": "L. A. Orbeli Institute of Physiology NAS RA", + "type": "Child", + "id": "https://ror.org/02gse4n09" + }, + { + "label": "Scientific Center of Zoology and Hydroecology", + "type": "Child", + "id": "https://ror.org/00t5ymp38" + } + ], + "addresses": [ + { + "lat": 40.18111, + "lng": 44.51361, + "state": null, + "state_code": null, + "city": "Yerevan", + "geonames_city": { + "id": 616052, + "city": "Yerevan", + "geonames_admin1": { + "name": "Yerevan", + "id": 616051, + "ascii_name": "Yerevan", + "code": "AM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 174982 + } + ], + "links": [ + "http://www.sci.am/" + ], + "aliases": [ + "Armenian National Academy of Sciences" + ], + "acronyms": [ + "NAS RA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Armenian_National_Academy_of_Sciences", + "labels": [ + { + "label": "Հայաստանի գիտությունների ազգային ակադեմիա", + "iso639": "hy" + } + ], + "country": { + "country_name": "Armenia", + "country_code": "AM" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1146 7878" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008721" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3712844" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2379496" + ] + }, + "GRID": { + "preferred": "grid.418094.0", + "all": "grid.418094.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04mknbs38.json b/rc-v1.15/04mknbs38.json new file mode 100644 index 000000000..fc9214b6d --- /dev/null +++ b/rc-v1.15/04mknbs38.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04mknbs38", + "name": "State Key Laboratory of Hydrology Water Resources and Hydraulic Engineering", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "State Key Laboratory of Hydrology-Water Resources and Hydraulic Engineering", + "type": "Successor", + "id": "https://ror.org/012wsxz85" + } + ], + "addresses": [ + { + "lat": 32.06167, + "lng": 118.77778, + "state": null, + "state_code": null, + "city": "Nanjing", + "geonames_city": { + "id": 1799962, + "city": "Nanjing", + "geonames_admin1": { + "name": "Jiangsu", + "id": 1806260, + "ascii_name": "Jiangsu", + "code": "CN.04" + }, + "geonames_admin2": { + "name": "Nanjing", + "id": 1799960, + "ascii_name": "Nanjing", + "code": "CN.04.3201" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.hydro-lab.cn/index_english.asp" + ], + "aliases": [], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [ + { + "label": "水文水资源与水利工程国家重点实验室", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "preferred": "501100011337", + "all": [ + "501100011337" + ] + }, + "GRID": { + "preferred": "grid.484567.c", + "all": "grid.484567.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04n0vf235.json b/rc-v1.15/04n0vf235.json new file mode 100644 index 000000000..241d106d3 --- /dev/null +++ b/rc-v1.15/04n0vf235.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/04n0vf235", + "name": "Canadian Breast Cancer Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Canadian Cancer Society", + "type": "Successor", + "id": "https://ror.org/017343w90" + } + ], + "addresses": [ + { + "lat": 43.70011, + "lng": -79.4163, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.cbcf.org/Pages/default.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Canadian_Breast_Cancer_Foundation", + "labels": [ + { + "label": "Fondation canadienne du cancer du sein", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0473 5688" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000147" + ] + }, + "GRID": { + "preferred": "grid.453374.2", + "all": "grid.453374.2" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04nsw4151.json b/rc-v1.15/04nsw4151.json new file mode 100644 index 000000000..a8adf08bd --- /dev/null +++ b/rc-v1.15/04nsw4151.json @@ -0,0 +1,134 @@ +{ + "id": "https://ror.org/04nsw4151", + "name": "Mylan (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (Australia)", + "type": "Child", + "id": "https://ror.org/05r35r527" + }, + { + "label": "Mylan (Germany)", + "type": "Child", + "id": "https://ror.org/04fmf8z66" + }, + { + "label": "Mylan (India)", + "type": "Child", + "id": "https://ror.org/039jjcy66" + }, + { + "label": "Mylan (Italy)", + "type": "Child", + "id": "https://ror.org/04k443z34" + }, + { + "label": "Mylan (South Africa)", + "type": "Child", + "id": "https://ror.org/01gqqqf26" + }, + { + "label": "Mylan (Sweden)", + "type": "Child", + "id": "https://ror.org/03jq8sq82" + }, + { + "label": "Mylan (Switzerland)", + "type": "Child", + "id": "https://ror.org/045sjkt56" + }, + { + "label": "Mylan (United Kingdom)", + "type": "Child", + "id": "https://ror.org/028rzxs74" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": 40.26257, + "lng": -80.18728, + "state": null, + "state_code": null, + "city": "Canonsburg", + "geonames_city": { + "id": 5183161, + "city": "Canonsburg", + "geonames_admin1": { + "name": "Pennsylvania", + "id": 6254927, + "ascii_name": "Pennsylvania", + "code": "US.PA" + }, + "geonames_admin2": { + "name": "Washington", + "id": 5218076, + "ascii_name": "Washington", + "code": "US.PA.125" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.mylan.com/" + ], + "aliases": [ + "UDL Laboratories, Inc." + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mylan", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "100016259", + "all": [ + "100016259" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30714477" + ] + }, + "GRID": { + "preferred": "grid.476548.c", + "all": "grid.476548.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04ps1tq95.json b/rc-v1.15/04ps1tq95.json new file mode 100644 index 000000000..88901a4b3 --- /dev/null +++ b/rc-v1.15/04ps1tq95.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/04ps1tq95", + "name": "Letterkenny Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Atlantic Technological University", + "type": "Successor", + "id": "https://ror.org/0458dap48" + } + ], + "addresses": [ + { + "lat": 54.95, + "lng": -7.73333, + "state": null, + "state_code": null, + "city": "Letterkenny", + "geonames_city": { + "id": 2962961, + "city": "Letterkenny", + "geonames_admin1": { + "name": "Ulster", + "id": 7521316, + "ascii_name": "Ulster", + "code": "IE.U" + }, + "geonames_admin2": { + "name": "Donegal", + "id": 2964751, + "ascii_name": "Donegal", + "code": "IE.U.06" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "http://www.lyit.ie/" + ], + "aliases": [ + "Regional Technical College, Letterkenny" + ], + "acronyms": [ + "LYIT" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Letterkenny_Institute_of_Technology", + "labels": [ + { + "label": "Institiúid Teicneolaíochta Leitir Ceanainn", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0484 1841" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3713543" + ] + }, + "GRID": { + "preferred": "grid.466018.d", + "all": "grid.466018.d" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04qzx1v96.json b/rc-v1.15/04qzx1v96.json new file mode 100644 index 000000000..95034068f --- /dev/null +++ b/rc-v1.15/04qzx1v96.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04qzx1v96", + "name": "Gunma Shorei Junior College of Welfare", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.3, + "lng": 139.36667, + "state": null, + "state_code": null, + "city": "Ōta", + "geonames_city": { + "id": 1853677, + "city": "Ōta", + "geonames_admin1": { + "name": "Gunma", + "id": 1863501, + "ascii_name": "Gunma", + "code": "JP.10" + }, + "geonames_admin2": { + "name": "Ōta-shi", + "id": 1853626, + "ascii_name": "Ōta-shi", + "code": "JP.10.1853626" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.tkw.ac.jp/shorei/top.html" + ], + "aliases": [ + "Gunma Shōrei Fukushi Tanki Daigaku" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gunma_Shorei_Junior_College_of_Welfare", + "labels": [ + { + "label": "群馬松嶺福祉短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0374 9383" + ] + }, + "GRID": { + "preferred": "grid.471607.3", + "all": "grid.471607.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04sy8yh72.json b/rc-v1.15/04sy8yh72.json new file mode 100644 index 000000000..a11eb7887 --- /dev/null +++ b/rc-v1.15/04sy8yh72.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04sy8yh72", + "name": "Illinois Institute of Art", + "email_address": null, + "ip_addresses": [], + "established": 1916, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "name": "Illinois", + "id": 4896861, + "ascii_name": "Illinois", + "code": "US.IL" + }, + "geonames_admin2": { + "name": "Cook", + "id": 4888671, + "ascii_name": "Cook", + "code": "US.IL.031" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/closed-school-information-page" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Illinois_Institute_of_Art_%E2%80%93_Chicago", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0532 0345" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5999521" + ] + }, + "GRID": { + "preferred": "grid.431693.a", + "all": "grid.431693.a" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04wgk6417.json b/rc-v1.15/04wgk6417.json new file mode 100644 index 000000000..5690b1d91 --- /dev/null +++ b/rc-v1.15/04wgk6417.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04wgk6417", + "name": "Art Institute of Las Vegas", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "The Art Institutes", + "type": "Parent", + "id": "https://ror.org/01p2ej961" + } + ], + "addresses": [ + { + "lat": 36.0397, + "lng": -114.98194, + "state": null, + "state_code": null, + "city": "Henderson", + "geonames_city": { + "id": 5505411, + "city": "Henderson", + "geonames_admin1": { + "name": "Nevada", + "id": 5509151, + "ascii_name": "Nevada", + "code": "US.NV" + }, + "geonames_admin2": { + "name": "Clark", + "id": 5501879, + "ascii_name": "Clark", + "code": "US.NV.003" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.artinstitutes.edu/las-vegas" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/The_Art_Institute_of_Las_Vegas", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0522 9904" + ] + }, + "GRID": { + "preferred": "grid.465788.0", + "all": "grid.465788.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/04yw47259.json b/rc-v1.15/04yw47259.json new file mode 100644 index 000000000..ca5a4a0bc --- /dev/null +++ b/rc-v1.15/04yw47259.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/04yw47259", + "name": "Macmurray College", + "email_address": null, + "ip_addresses": [], + "established": 1846, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.73394, + "lng": -90.22901, + "state": null, + "state_code": null, + "city": "Jacksonville", + "geonames_city": { + "id": 4241704, + "city": "Jacksonville", + "geonames_admin1": { + "name": "Illinois", + "id": 4896861, + "ascii_name": "Illinois", + "code": "US.IL" + }, + "geonames_admin2": { + "name": "Morgan", + "id": 4244840, + "ascii_name": "Morgan", + "code": "US.IL.137" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.mac.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/MacMurray_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0414 2807" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2898806" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6722050" + ] + }, + "GRID": { + "preferred": "grid.421071.1", + "all": "grid.421071.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0524wfr80.json b/rc-v1.15/0524wfr80.json new file mode 100644 index 000000000..9c0a1989d --- /dev/null +++ b/rc-v1.15/0524wfr80.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0524wfr80", + "name": "Iwate College of Nursing", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Iwate Medical University", + "type": "Successor", + "id": "https://ror.org/04cybtr86" + } + ], + "addresses": [ + { + "lat": 39.69414, + "lng": 140.98442, + "state": null, + "state_code": null, + "city": "Shizukuishi", + "geonames_city": { + "id": 2110994, + "city": "Shizukuishi", + "geonames_admin1": { + "name": "Iwate", + "id": 2112518, + "ascii_name": "Iwate", + "code": "JP.16" + }, + "geonames_admin2": { + "name": "Iwate-gun", + "id": 7441804, + "ascii_name": "Iwate-gun", + "code": "JP.16.7441804" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.iwate-nurse.ac.jp/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Iwate_College_of_Nursing", + "labels": [ + { + "label": "岩手看護短期大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0371 1211" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q11474639" + ] + }, + "GRID": { + "preferred": "grid.471653.2", + "all": "grid.471653.2" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/0530qwm02.json b/rc-v1.15/0530qwm02.json new file mode 100644 index 000000000..6a2fd873a --- /dev/null +++ b/rc-v1.15/0530qwm02.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0530qwm02", + "name": "Earth and Environment Institute of Strasbourg", + "email_address": null, + "ip_addresses": [], + "established": 2021, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National School for Water and Environmental Engineering", + "type": "Parent", + "id": "https://ror.org/02jhjzd11" + }, + { + "label": "Laboratory of Hydrology and Geochemistry", + "type": "Predecessor", + "id": "https://ror.org/03y81da23" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ites.unistra.fr/" + ], + "aliases": [], + "acronyms": [ + "ITES" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut Terre et Environnement de Strasbourg", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/rc-v1.15/05350h943.json b/rc-v1.15/05350h943.json new file mode 100644 index 000000000..b63f69748 --- /dev/null +++ b/rc-v1.15/05350h943.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/05350h943", + "name": "Center of Advanced European Studies and Research", + "email_address": "", + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "Related", + "id": "https://ror.org/01hhn8329" + }, + { + "label": "Max Planck Institute for Neurobiology of Behavior – caesar", + "type": "Successor", + "id": "https://ror.org/02yjyfs84" + } + ], + "addresses": [ + { + "lat": 50.73438, + "lng": 7.09549, + "state": null, + "state_code": null, + "city": "Bonn", + "geonames_city": { + "id": 2946447, + "city": "Bonn", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Cologne District", + "id": 2886241, + "ascii_name": "Cologne District", + "code": "DE.07.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.caesar.de/" + ], + "aliases": [ + "Stiftung caesar - assoziiert mit der Max-Planck-Gesellschaft" + ], + "acronyms": [ + "CAESAR" + ], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/Center_of_Advanced_European_Studies_and_Research", + "labels": [ + { + "label": "Forschungszentrum caesar", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0550 9586" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q163307" + ] + }, + "GRID": { + "preferred": "grid.438114.b", + "all": "grid.438114.b" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/053avzc18.json b/rc-v1.15/053avzc18.json new file mode 100644 index 000000000..240650d8d --- /dev/null +++ b/rc-v1.15/053avzc18.json @@ -0,0 +1,417 @@ +{ + "id": "https://ror.org/053avzc18", + "name": "Czech Academy of Sciences", + "email_address": "", + "ip_addresses": [], + "established": 1784, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Academia Nakladatelství", + "type": "Child", + "id": "https://ror.org/05ef3yq64" + }, + { + "label": "Czech Academy of Sciences, Astronomical Institute", + "type": "Child", + "id": "https://ror.org/03tp8z347" + }, + { + "label": "Biology Centre of the Czech Academy of Sciences", + "type": "Child", + "id": "https://ror.org/05pq4yn02" + }, + { + "label": "Czech Academy of Sciences, Centre of Administration and Operations", + "type": "Child", + "id": "https://ror.org/03zkxs276" + }, + { + "label": "Centre of the Region Haná for Biotechnical and Agricultural Research", + "type": "Child", + "id": "https://ror.org/03bh94f16" + }, + { + "label": "Czech Botanical Society", + "type": "Child", + "id": "https://ror.org/02gndyy51" + }, + { + "label": "Czech Society for Biochemistry and Molecular Biology", + "type": "Child", + "id": "https://ror.org/01b23gh75" + }, + { + "label": "Czech Academy of Sciences, Economics Institute", + "type": "Child", + "id": "https://ror.org/01y3ft232" + }, + { + "label": "Engineering Academy of the Czech Republic", + "type": "Child", + "id": "https://ror.org/04dea3c58" + }, + { + "label": "Czech Academy of Sciences, Global Change Research Institute", + "type": "Child", + "id": "https://ror.org/01v5hek98" + }, + { + "label": "Czech Academy of Sciences, Institute of Analytical Chemistry", + "type": "Child", + "id": "https://ror.org/05g7knd32" + }, + { + "label": "Czech Academy of Sciences, Institute of Animal Physiology and Genetics", + "type": "Child", + "id": "https://ror.org/0157za327" + }, + { + "label": "Czech Academy of Sciences, Institute of Archaeology, Brno", + "type": "Child", + "id": "https://ror.org/02bvcjw39" + }, + { + "label": "Czech Academy of Sciences, Institute of Archaeology, Prague", + "type": "Child", + "id": "https://ror.org/0287jta43" + }, + { + "label": "Czech Academy of Sciences, Institute of Art History", + "type": "Child", + "id": "https://ror.org/00913gw18" + }, + { + "label": "Czech Academy of Sciences, Institute of Atmospheric Physics", + "type": "Child", + "id": "https://ror.org/04vtzcr32" + }, + { + "label": "Czech Academy of Sciences, Institute of Biophysics", + "type": "Child", + "id": "https://ror.org/00angvn73" + }, + { + "label": "Czech Academy of Sciences, Institute of Biotechnology", + "type": "Child", + "id": "https://ror.org/00wzqmx94" + }, + { + "label": "Czech Academy of Sciences, Institute of Botany", + "type": "Child", + "id": "https://ror.org/03qqnc658" + }, + { + "label": "Czech Academy of Sciences, Institute of Chemical Process Fundamentals", + "type": "Child", + "id": "https://ror.org/02acv3g39" + }, + { + "label": "Czech Academy of Sciences, Institute of Computer Science", + "type": "Child", + "id": "https://ror.org/0496n6574" + }, + { + "label": "Czech Academy of Sciences, Institute of Contemporary History", + "type": "Child", + "id": "https://ror.org/01zghvr36" + }, + { + "label": "Czech Academy of Sciences, Institute of Czech Literature", + "type": "Child", + "id": "https://ror.org/01vr20t27" + }, + { + "label": "Czech Academy of Sciences, Institute of Ethnology", + "type": "Child", + "id": "https://ror.org/01qj7sc02" + }, + { + "label": "Czech Academy of Sciences, Institute of Experimental Botany", + "type": "Child", + "id": "https://ror.org/057br4398" + }, + { + "label": "Czech Academy of Sciences, Institute of Experimental Medicine", + "type": "Child", + "id": "https://ror.org/03hjekm25" + }, + { + "label": "Czech Academy of Sciences, Institute of Geology", + "type": "Child", + "id": "https://ror.org/04wh80b80" + }, + { + "label": "Czech Academy of Sciences, Institute of Geonics", + "type": "Child", + "id": "https://ror.org/02d3n7h84" + }, + { + "label": "Czech Academy of Sciences, Institute of Geophysics", + "type": "Child", + "id": "https://ror.org/02e8b2r87" + }, + { + "label": "Czech Academy of Sciences, Institute of History", + "type": "Child", + "id": "https://ror.org/03tybc759" + }, + { + "label": "Czech Academy of Sciences, Institute of Hydrodynamics", + "type": "Child", + "id": "https://ror.org/009wryk55" + }, + { + "label": "Czech Academy of Sciences, Institute of Information Theory and Automation", + "type": "Child", + "id": "https://ror.org/03h1hsz49" + }, + { + "label": "Czech Academy of Sciences, Institute of Inorganic Chemistry", + "type": "Child", + "id": "https://ror.org/01hsjcv06" + }, + { + "label": "Czech Academy of Sciences, Institute of Macromolecular Chemistry", + "type": "Child", + "id": "https://ror.org/0143w7709" + }, + { + "label": "Czech Academy of Sciences, Institute of Mathematics", + "type": "Child", + "id": "https://ror.org/02tv1yf50" + }, + { + "label": "Czech Academy of Sciences, Institute of Microbiology", + "type": "Child", + "id": "https://ror.org/02p1jz666" + }, + { + "label": "Czech Academy of Sciences, Institute of Molecular Genetics", + "type": "Child", + "id": "https://ror.org/045syc608" + }, + { + "label": "Czech Academy of Sciences, Institute of Organic Chemistry and Biochemistry", + "type": "Child", + "id": "https://ror.org/04nfjn472" + }, + { + "label": "Czech Academy of Sciences, Institute of Philosophy", + "type": "Child", + "id": "https://ror.org/01hyg6578" + }, + { + "label": "Czech Academy of Sciences, Institute of Photonics and Electronics", + "type": "Child", + "id": "https://ror.org/05wrbcx33" + }, + { + "label": "Czech Academy of Sciences, Institute of Physics", + "type": "Child", + "id": "https://ror.org/02yhj4v17" + }, + { + "label": "Czech Academy of Sciences, Institute of Physics of Materials", + "type": "Child", + "id": "https://ror.org/02d02f052" + }, + { + "label": "Czech Academy of Sciences, Institute of Physiology", + "type": "Child", + "id": "https://ror.org/05xw0ep96" + }, + { + "label": "Czech Academy of Sciences, Institute of Plasma Physics", + "type": "Child", + "id": "https://ror.org/01h494015" + }, + { + "label": "Czech Academy of Sciences, Institute of Psychology", + "type": "Child", + "id": "https://ror.org/03aba6h29" + }, + { + "label": "Czech Academy of Sciences, Institute of Rock Structure and Mechanics", + "type": "Child", + "id": "https://ror.org/00m4pvq34" + }, + { + "label": "Czech Academy of Sciences, Institute of Scientific Instruments", + "type": "Child", + "id": "https://ror.org/027taah18" + }, + { + "label": "Czech Academy of Sciences, Institute of Sociology", + "type": "Child", + "id": "https://ror.org/018hy5194" + }, + { + "label": "Czech Academy of Sciences, Institute of State and Law", + "type": "Child", + "id": "https://ror.org/00hzy8397" + }, + { + "label": "Czech Academy of Sciences, Institute of Theoretical and Applied Mechanics", + "type": "Child", + "id": "https://ror.org/01hxbnq19" + }, + { + "label": "Czech Academy of Sciences, Institute of Thermomechanics", + "type": "Child", + "id": "https://ror.org/03fvq2a72" + }, + { + "label": "Czech Academy of Sciences, Institute of Vertebrate Biology", + "type": "Child", + "id": "https://ror.org/05bcgdd94" + }, + { + "label": "Czech Academy of Sciences, Czech Language Institute", + "type": "Child", + "id": "https://ror.org/01912nj27" + }, + { + "label": "Czech Academy of Sciences, J. Heyrovský Institute of Physical Chemistry", + "type": "Child", + "id": "https://ror.org/02sat5y74" + }, + { + "label": "Czech Academy of Sciences, Library", + "type": "Child", + "id": "https://ror.org/028sgmw18" + }, + { + "label": "Czech Academy of Sciences, Masaryk Institute and Archives", + "type": "Child", + "id": "https://ror.org/03nvfe914" + }, + { + "label": "Matice Moravská", + "type": "Child", + "id": "https://ror.org/01nsk9g93" + }, + { + "label": "Czech Academy of Sciences, Nuclear Physics Institute", + "type": "Child", + "id": "https://ror.org/04jymbd90" + }, + { + "label": "Czech Academy of Sciences, Oriental Institute", + "type": "Child", + "id": "https://ror.org/04tr8pt83" + }, + { + "label": "Czech Academy of Sciences, Institute of Slavonic Studies", + "type": "Child", + "id": "https://ror.org/03qq0n189" + }, + { + "label": "Technology Centre", + "type": "Child", + "id": "https://ror.org/02tc3qm58" + }, + { + "label": "Ústav T. G. Masaryka", + "type": "Child", + "id": "https://ror.org/004542426" + } + ], + "addresses": [ + { + "lat": 50.08804, + "lng": 14.42076, + "state": null, + "state_code": null, + "city": "Prague", + "geonames_city": { + "id": 3067696, + "city": "Prague", + "geonames_admin1": { + "name": "Hlavní město Praha", + "id": 3067695, + "ascii_name": "Hlavní město Praha", + "code": "CZ.52" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3077311 + } + ], + "links": [ + "http://www.avcr.cz/" + ], + "aliases": [], + "acronyms": [ + "AVČR", + "CAS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Academy_of_Sciences_of_the_Czech_Republic", + "labels": [ + { + "label": "Akademie věd České Republiky", + "iso639": "cs" + } + ], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1015 3316" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004240" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2264595" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q374686" + ] + }, + "GRID": { + "preferred": "grid.418095.1", + "all": "grid.418095.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05524hb64.json b/rc-v1.15/05524hb64.json new file mode 100644 index 000000000..47884e3e8 --- /dev/null +++ b/rc-v1.15/05524hb64.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05524hb64", + "name": "Extreme Science and Engineering Discovery Environment", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "National Center for Supercomputing Applications", + "type": "Parent", + "id": "https://ror.org/03r10zj06" + }, + { + "label": "Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support", + "type": "Successor", + "id": "https://ror.org/01v6d0b34" + } + ], + "addresses": [ + { + "lat": 40.11059, + "lng": -88.20727, + "state": null, + "state_code": null, + "city": "Urbana", + "geonames_city": { + "id": 4914570, + "city": "Urbana", + "geonames_admin1": { + "name": "Illinois", + "id": 4896861, + "ascii_name": "Illinois", + "code": "US.IL" + }, + "geonames_admin2": { + "name": "Champaign", + "id": 4887163, + "ascii_name": "Champaign", + "code": "US.IL.019" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.xsede.org/" + ], + "aliases": [], + "acronyms": [ + "XSEDE" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "preferred": "grid.501421.3", + "all": "grid.501421.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05532r870.json b/rc-v1.15/05532r870.json new file mode 100644 index 000000000..c4e41c9c3 --- /dev/null +++ b/rc-v1.15/05532r870.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/05532r870", + "name": "Portuguese Canadian National Congress", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.70011, + "lng": -79.4163, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.congresso.ca/english/default.aspx" + ], + "aliases": [], + "acronyms": [ + "PCNC" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Congrès National Luso Canadien", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "preferred": "grid.498895.1", + "all": "grid.498895.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/055n47h92.json b/rc-v1.15/055n47h92.json new file mode 100644 index 000000000..ada95c1fd --- /dev/null +++ b/rc-v1.15/055n47h92.json @@ -0,0 +1,148 @@ +{ + "id": "https://ror.org/055n47h92", + "name": "National Institutes of Natural Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inter-University Research Institute Corporation", + "type": "Parent", + "id": "https://ror.org/04n60ga54" + }, + { + "label": "Astrobiology Center", + "type": "Child", + "id": "https://ror.org/028z8qe34" + }, + { + "label": "Institute for Molecular Science", + "type": "Child", + "id": "https://ror.org/04wqh5h97" + }, + { + "label": "National Astronomical Observatory of Japan", + "type": "Child", + "id": "https://ror.org/052rrw050" + }, + { + "label": "National Institute for Basic Biology", + "type": "Child", + "id": "https://ror.org/05q8wtt20" + }, + { + "label": "National Institute for Fusion Science", + "type": "Child", + "id": "https://ror.org/01t3wyv61" + }, + { + "label": "National Institute for Physiological Sciences", + "type": "Child", + "id": "https://ror.org/048v13307" + }, + { + "label": "Okazaki National Research Institutes", + "type": "Predecessor", + "id": "https://ror.org/000d53575" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.nins.jp/english/" + ], + "aliases": [ + "Shizenkagaku Kenkyuukikou" + ], + "acronyms": [ + "NINS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/National_Institutes_of_Natural_Sciences,_Japan", + "labels": [ + { + "label": "自然科学研究機構", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9137 6732" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006321" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "25029133" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6973767" + ] + }, + "GRID": { + "preferred": "grid.250358.9", + "all": "grid.250358.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/058mseb02.json b/rc-v1.15/058mseb02.json new file mode 100644 index 000000000..4fea52393 --- /dev/null +++ b/rc-v1.15/058mseb02.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/058mseb02", + "name": "China National Centre for Food Safety Risk Assessment", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "China National Center for Food Safety Risk Assessment", + "type": "Successor", + "id": "https://ror.org/03kcjz738" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "id": 2038349, + "ascii_name": "Beijing", + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "https://en.cfsa.net.cn/" + ], + "aliases": [], + "acronyms": [ + "CFSA" + ], + "status": "withdrawn", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "preferred": "grid.511812.e", + "all": "grid.511812.e" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/058thb585.json b/rc-v1.15/058thb585.json new file mode 100644 index 000000000..7020fcea6 --- /dev/null +++ b/rc-v1.15/058thb585.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/058thb585", + "name": "Badan Pengkajian dan Penerapan Teknologi", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Research and Innovation Agency", + "type": "Successor", + "id": "https://ror.org/02hmjzt55" + } + ], + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "name": "Jakarta", + "id": 1642907, + "ascii_name": "Jakarta", + "code": "ID.04" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [ + "http://www.bppt.go.id/english/" + ], + "aliases": [], + "acronyms": [ + "BPPT" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Agency for Assessment and Implementation Technology", + "iso639": "en" + } + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0746 0534" + ] + }, + "GRID": { + "preferred": "grid.432292.c", + "all": "grid.432292.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/059a9e323.json b/rc-v1.15/059a9e323.json new file mode 100644 index 000000000..1773b645f --- /dev/null +++ b/rc-v1.15/059a9e323.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/059a9e323", + "name": "Viavi Solutions (United States)", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Viavi Solutions (United Kingdom)", + "type": "Child", + "id": "https://ror.org/0489rbg31" + }, + { + "label": "JDSU (United States)", + "type": "Predecessor", + "id": "https://ror.org/01a5v8x09" + } + ], + "addresses": [ + { + "lat": 37.33939, + "lng": -121.89496, + "state": null, + "state_code": null, + "city": "San Jose", + "geonames_city": { + "id": 5392171, + "city": "San Jose", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Santa Clara", + "id": 5393021, + "ascii_name": "Santa Clara", + "code": "US.CA.085" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.viavisolutions.com/en-us" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Viavi_Solutions", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4911 2185" + ] + }, + "GRID": { + "preferred": "grid.480445.9", + "all": "grid.480445.9" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05esm3b90.json b/rc-v1.15/05esm3b90.json new file mode 100644 index 000000000..db2f2563b --- /dev/null +++ b/rc-v1.15/05esm3b90.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05esm3b90", + "name": "Canadian Plastics Industry Association", + "email_address": null, + "ip_addresses": [], + "established": 1943, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Chemistry Industry Association of Canada", + "type": "Successor", + "id": "https://ror.org/05p0ja512" + } + ], + "addresses": [ + { + "lat": 43.5789, + "lng": -79.6583, + "state": null, + "state_code": null, + "city": "Mississauga", + "geonames_city": { + "id": 6075357, + "city": "Mississauga", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.plastics.ca/home/index.php" + ], + "aliases": [], + "acronyms": [ + "CPIA" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Association Canadienne de l'Industrie des Plastiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "preferred": "grid.423402.3", + "all": "grid.423402.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05fkxeh29.json b/rc-v1.15/05fkxeh29.json new file mode 100644 index 000000000..ebeff621f --- /dev/null +++ b/rc-v1.15/05fkxeh29.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05fkxeh29", + "name": "Sudbury Regional Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Health Sciences North", + "type": "Parent", + "id": "https://ror.org/04br0rs05" + }, + { + "label": "Health Sciences North", + "type": "Successor", + "id": "https://ror.org/04br0rs05" + } + ], + "addresses": [ + { + "lat": 46.49, + "lng": -80.99001, + "state": null, + "state_code": null, + "city": "Sudbury", + "geonames_city": { + "id": 5964700, + "city": "Sudbury", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.health.gov.on.ca/en/common/ministry/publications/reports/sudbury/sudbury.aspx" + ], + "aliases": [], + "acronyms": [ + "HRSRH" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Hôpital régional de Sudbury", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "preferred": "grid.416683.e", + "all": "grid.416683.e" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05hde1z07.json b/rc-v1.15/05hde1z07.json new file mode 100644 index 000000000..71f4a6ffc --- /dev/null +++ b/rc-v1.15/05hde1z07.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05hde1z07", + "name": "Wellcome Library", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Wellcome Collection", + "type": "Successor", + "id": "https://ror.org/022awwm23" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://wellcomelibrary.org/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wellcome_Library", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2299 5297" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7981192" + ] + }, + "GRID": { + "preferred": "grid.502976.f", + "all": "grid.502976.f" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05kzrmv33.json b/rc-v1.15/05kzrmv33.json new file mode 100644 index 000000000..93252dc6c --- /dev/null +++ b/rc-v1.15/05kzrmv33.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/05kzrmv33", + "name": "Aichi Prefectural Cardiovascular Respiratory Disease Center", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.3, + "lng": 136.8, + "state": null, + "state_code": null, + "city": "Ichinomiya", + "geonames_city": { + "id": 1861949, + "city": "Ichinomiya", + "geonames_admin1": { + "name": "Aichi", + "id": 1865694, + "ascii_name": "Aichi", + "code": "JP.01" + }, + "geonames_admin2": { + "name": "Ichinomiya", + "id": 1861940, + "ascii_name": "Ichinomiya", + "code": "JP.01.1861940" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [], + "aliases": [ + "Aichi Prefectural Owari Hospital" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "愛知県立循環器呼吸器病センター", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q11494230" + ] + }, + "GRID": { + "preferred": "grid.413436.7", + "all": "grid.413436.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05mxean80.json b/rc-v1.15/05mxean80.json new file mode 100644 index 000000000..4fc984147 --- /dev/null +++ b/rc-v1.15/05mxean80.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05mxean80", + "name": "Osaka City University Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1925, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.69374, + "lng": 135.50218, + "state": null, + "state_code": null, + "city": "Osaka", + "geonames_city": { + "id": 1853909, + "city": "Osaka", + "geonames_admin1": { + "name": "Ōsaka", + "id": 1853904, + "ascii_name": "Ōsaka", + "code": "JP.32" + }, + "geonames_admin2": { + "name": "Osaka City", + "id": 1853897, + "ascii_name": "Osaka City", + "code": "JP.32.1853897" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.hosp.med.osaka-cu.ac.jp/" + ], + "aliases": [ + "Osaka Municipal University Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Osaka_City_University_Hospital", + "labels": [ + { + "label": "大阪市立大学医学部附属病院", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 7677 6649" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q11440418" + ] + }, + "GRID": { + "preferred": "grid.470114.7", + "all": "grid.470114.7" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05pgxdd43.json b/rc-v1.15/05pgxdd43.json new file mode 100644 index 000000000..2366ecf11 --- /dev/null +++ b/rc-v1.15/05pgxdd43.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/05pgxdd43", + "name": "Aboriginal Affairs Northern Dev Canada", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of Canada", + "type": "Parent", + "id": "https://ror.org/010q4q527" + }, + { + "label": "Crown-Indigenous Relations and Northern Affairs Canada", + "type": "Successor", + "id": "https://ror.org/05xmf1h49" + }, + { + "label": "Indigenous Services Canada", + "type": "Successor", + "id": "https://ror.org/04babsy72" + } + ], + "addresses": [ + { + "lat": 45.47723, + "lng": -75.70164, + "state": null, + "state_code": null, + "city": "Gatineau", + "geonames_city": { + "id": 5959974, + "city": "Gatineau", + "geonames_admin1": { + "name": "Quebec", + "id": 6115047, + "ascii_name": "Quebec", + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Outaouais", + "id": 6095306, + "ascii_name": "Outaouais", + "code": "CA.10.07" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.aadnc-aandc.gc.ca/eng/1100100010002/1100100010021" + ], + "aliases": [ + "Department of Indian Affairs and Northern Development", + "Indigenous and Northern Affairs Canada" + ], + "acronyms": [ + "AANDC", + "AADNC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Indigenous_and_Northern_Affairs_Canada", + "labels": [ + { + "label": "Affaires autochtones et du développement du Nord canadien", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2150 0635" + ] + }, + "FundRef": { + "preferred": "501100000047", + "all": [ + "501100000047", + "501100008632" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q827005" + ] + }, + "GRID": { + "preferred": "grid.271337.3", + "all": "grid.271337.3" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05r35r527.json b/rc-v1.15/05r35r527.json new file mode 100644 index 000000000..a4131a381 --- /dev/null +++ b/rc-v1.15/05r35r527.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05r35r527", + "name": "Mylan (Australia)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Mylan (United States)", + "type": "Parent", + "id": "https://ror.org/04nsw4151" + }, + { + "label": "Viatris", + "type": "Successor", + "id": "https://ror.org/01g1gvr46" + } + ], + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "name": "Victoria", + "id": 2145234, + "ascii_name": "Victoria", + "code": "AU.07" + }, + "geonames_admin2": { + "name": "Melbourne", + "id": 7839805, + "ascii_name": "Melbourne", + "code": "AU.07.24600" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "http://www.mylan.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0640 4399" + ] + }, + "GRID": { + "preferred": "grid.472777.6", + "all": "grid.472777.6" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05rhyza23.json b/rc-v1.15/05rhyza23.json new file mode 100644 index 000000000..804e1d275 --- /dev/null +++ b/rc-v1.15/05rhyza23.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05rhyza23", + "name": "Institute of Parasitology", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Czech Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/053avzc18" + }, + { + "label": "Biology Centre of the Czech Academy of Sciences", + "type": "Successor", + "id": "https://ror.org/05pq4yn02" + } + ], + "addresses": [ + { + "lat": 48.97447, + "lng": 14.47434, + "state": null, + "state_code": null, + "city": "České Budějovice", + "geonames_city": { + "id": 3077916, + "city": "České Budějovice", + "geonames_admin1": { + "name": "Jihočeský kraj", + "id": 3339537, + "ascii_name": "Jihočeský kraj", + "code": "CZ.79" + }, + "geonames_admin2": { + "name": "České Budějovice District", + "id": 3077915, + "ascii_name": "České Budějovice District", + "code": "CZ.79.0311" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3077311 + } + ], + "links": [ + "http://www.paru.cas.cz/en/" + ], + "aliases": [ + "Parazitologický ústav" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Czechia", + "country_code": "CZ" + }, + "external_ids": { + "GRID": { + "preferred": "grid.448361.c", + "all": "grid.448361.c" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05rx1xe20.json b/rc-v1.15/05rx1xe20.json new file mode 100644 index 000000000..a154631ba --- /dev/null +++ b/rc-v1.15/05rx1xe20.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05rx1xe20", + "name": "Conexant (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Synaptics (United States)", + "type": "Successor", + "id": "https://ror.org/031tq8403" + } + ], + "addresses": [ + { + "lat": 33.66946, + "lng": -117.82311, + "state": null, + "state_code": null, + "city": "Irvine", + "geonames_city": { + "id": 5359777, + "city": "Irvine", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Orange", + "id": 5379524, + "ascii_name": "Orange", + "code": "US.CA.059" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.conexant.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Conexant", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6044 5191" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1124769" + ] + }, + "GRID": { + "preferred": "grid.471118.a", + "all": "grid.471118.a" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05s7dz794.json b/rc-v1.15/05s7dz794.json new file mode 100644 index 000000000..15d58cde0 --- /dev/null +++ b/rc-v1.15/05s7dz794.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05s7dz794", + "name": "International Union Against Tuberculosis and Lung Disease", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "International Union Against Tuberculosis and Lung Disease", + "type": "Successor", + "id": "https://ror.org/037x4qk98" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.theunion.org/" + ], + "aliases": [ + "The Union" + ], + "acronyms": [ + "UATLD" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Union_Against_Tuberculosis_and_Lung_Disease", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "501100005850", + "all": [ + "501100005850" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30268057" + ] + }, + "GRID": { + "preferred": "grid.475288.4", + "all": "grid.475288.4" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05t2kwz20.json b/rc-v1.15/05t2kwz20.json new file mode 100644 index 000000000..0f402a0e1 --- /dev/null +++ b/rc-v1.15/05t2kwz20.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05t2kwz20", + "name": "Tokyo Jogakkan College", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 35.54028, + "lng": 139.45083, + "state": null, + "state_code": null, + "city": "Machida", + "geonames_city": { + "id": 1857871, + "city": "Machida", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": "Machida-shi", + "id": 1857869, + "ascii_name": "Machida-shi", + "code": "JP.40.1857869" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.tjk.ac.jp/" + ], + "aliases": [], + "acronyms": [ + "TJKC" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Tokyo_Jogakkan_College", + "labels": [ + { + "label": "東京女学館大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0375 8319" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "18167987" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7813909" + ] + }, + "GRID": { + "preferred": "grid.444234.1", + "all": "grid.444234.1" + } + } +} \ No newline at end of file diff --git a/rc-v1.15/05xmf1h49.json b/rc-v1.15/05xmf1h49.json new file mode 100644 index 000000000..6198d7ffa --- /dev/null +++ b/rc-v1.15/05xmf1h49.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/05xmf1h49", + "name": "Crown-Indigenous Relations and Northern Affairs Canada", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Aboriginal Affairs Northern Dev Canada", + "type": "Predecessor", + "id": "https://ror.org/05pgxdd43" + } + ], + "addresses": [ + { + "lat": 45.47723, + "lng": -75.70164, + "state": null, + "state_code": null, + "city": "Gatineau", + "geonames_city": { + "id": 5959974, + "city": "Gatineau", + "geonames_admin1": { + "name": "Quebec", + "id": 6115047, + "ascii_name": "Quebec", + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Outaouais", + "id": 6095306, + "ascii_name": "Outaouais", + "code": "CA.10.07" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://www.rcaanc-cirnac.gc.ca" + ], + "aliases": [], + "acronyms": [ + "CIRNAC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Crown%E2%80%93Indigenous_Relations_and_Northern_Affairs_Canada", + "labels": [ + { + "label": "Relations Couronne-Autochtones et des Affaires du Nord Canada", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8308 3517", + "all": [ + "0000 0004 8308 3517" + ] + }, + "FundRef": { + "preferred": "501100014009", + "all": [ + "501100014009" + ] + }, + "Wikidata": { + "preferred": "Q86685295", + "all": [ + "Q86685295" + ] + } + } +} \ No newline at end of file diff --git a/rc-v1.15/relationships.csv b/rc-v1.15/relationships.csv new file mode 100644 index 000000000..9ba1c3f8c --- /dev/null +++ b/rc-v1.15/relationships.csv @@ -0,0 +1,102 @@ +Issue # from Github,Issue URL,Issue title from Github,Name of org in Record ID,Record ID,Related ID,Name of org in Related ID,Relationship of Related ID to Record ID,Current location of Related ID +573,https://github.com/ror-community/ror-updates/issues/573,Deprecate an existing ROR record: Princess Margaret Hospital for Children - https://ror.org/04ec98z42,Princess Margaret Hospital for Children,https://ror.org/04ec98z42,https://ror.org/015zx6n37,Perth Children's Hospital,Successor,Production +599,https://github.com/ror-community/ror-updates/issues/599,Deprecate/Redirect Public Health England - https://ror.org/00vbvha87 ,Public Health England,https://ror.org/00vbvha87,https://ror.org/018h10037,UK Health Security Agency,Successor,Production +599,https://github.com/ror-community/ror-updates/issues/599,Deprecate/Redirect Public Health England - https://ror.org/00vbvha87 ,UK Health Security Agency,https://ror.org/018h10037,https://ror.org/00vbvha87,Public Health England,Predecessor,Release +599,https://github.com/ror-community/ror-updates/issues/599,Deprecate/Redirect Public Health England - https://ror.org/00vbvha87 ,Public Health England,https://ror.org/00vbvha87,https://ror.org/02m3w2z38,Office for Health Improvement and Disparities,Successor,Production +599,https://github.com/ror-community/ror-updates/issues/599,Deprecate/Redirect Public Health England - https://ror.org/00vbvha87 ,Office for Health Improvement and Disparities,https://ror.org/02m3w2z38,https://ror.org/00vbvha87,Public Health England,Predecessor,Release +617,https://github.com/ror-community/ror-updates/issues/617,Deprecate/Merge: Canadian Plastics Industry Association - https://ror.org/05esm3b90,Canadian Plastics Industry Association,https://ror.org/05esm3b90,https://ror.org/05p0ja512,Chemistry Industry Association of Canada,Successor,Production +620,https://github.com/ror-community/ror-updates/issues/620,Deprecate/Merge: Canadian Breast Cancer Foundation - https://ror.org/04n0vf235,Canadian Breast Cancer Foundation,https://ror.org/04n0vf235,https://ror.org/017343w90,Canadian Cancer Society,Successor,Production +622,https://github.com/ror-community/ror-updates/issues/622,Deprecate/Merge: Canadian Polar Commission - https://ror.org/00em52312,Canadian Polar Commission,https://ror.org/00em52312,https://ror.org/00rfash91,Polar Knowledge Canada,Successor,Production +623,https://github.com/ror-community/ror-updates/issues/623,Deprecate/Merge: Aboriginal Affairs Northern Dev Canada - https://ror.org/05pgxdd43,Aboriginal Affairs Northern Dev Canada,https://ror.org/05pgxdd43,https://ror.org/05xmf1h49,Crown-Indigenous Relations and Northern Affairs Canada,Successor,Production +623,https://github.com/ror-community/ror-updates/issues/623,Deprecate/Merge: Aboriginal Affairs Northern Dev Canada - https://ror.org/05pgxdd43,Crown-Indigenous Relations and Northern Affairs Canada,https://ror.org/05xmf1h49,https://ror.org/05pgxdd43,Aboriginal Affairs Northern Dev Canada,Predecessor,Release +623,https://github.com/ror-community/ror-updates/issues/623,Deprecate/Merge: Aboriginal Affairs Northern Dev Canada - https://ror.org/05pgxdd43,Aboriginal Affairs Northern Dev Canada,https://ror.org/05pgxdd43,https://ror.org/04babsy72,Indigenous Services Canada,Successor,Production +623,https://github.com/ror-community/ror-updates/issues/623,Deprecate/Merge: Aboriginal Affairs Northern Dev Canada - https://ror.org/05pgxdd43,Indigenous Services Canada,https://ror.org/04babsy72,https://ror.org/05pgxdd43,Aboriginal Affairs Northern Dev Canada,Predecessor,Release +624,https://github.com/ror-community/ror-updates/issues/624,Deprecate/Merge: Sudbury Regional Hospital - https://ror.org/05fkxeh29,Sudbury Regional Hospital,https://ror.org/05fkxeh29,https://ror.org/04br0rs05,Health Sciences North,Successor,Production +649,https://github.com/ror-community/ror-updates/issues/649,Deprecate https://ror.org/01sfh2b07 - National Agency for New Technologies Energy and Sustainable Economic Development,National Agency for New Technologies Energy and Sustainable Economic Development,https://ror.org/01sfh2b07,https://ror.org/02an8es95,"National Agency for New Technologies, Energy and Sustainable Economic Development",Successor,Production +701,https://github.com/ror-community/ror-updates/issues/701,Deprecate a record: JDSU - https://ror.org/01a5v8x09,JDSU,https://ror.org/01a5v8x09,https://ror.org/059a9e323,Viavi Solutions (United States),Successor,Production +701,https://github.com/ror-community/ror-updates/issues/701,Deprecate a record: JDSU - https://ror.org/01a5v8x09,Viavi Solutions (United States),https://ror.org/059a9e323,https://ror.org/01a5v8x09,JDSU,Predecessor,Release +765,https://github.com/ror-community/ror-updates/issues/765,"Merge two or more ROR records: + +Public Library of Sciencehttps://ror.org/03bdvdc06",Public Library of Science,https://ror.org/03bdvdc06,https://ror.org/008zgvp64,Public Library of Science,Successor,Production +794,https://github.com/ror-community/ror-updates/issues/794,"Merge two or more ROR records: + +Hospital Universitario Dexeus (formerly USP Institut Universitari Dexeus)https://ror.org/00scfzf83, https://ror.org/03wkq5991",USP Institut Universitari Dexeus,https://ror.org/03wkq5991,https://ror.org/00scfzf83,Hospital Universitario Dexeus,Successor,Production +955,https://github.com/ror-community/ror-updates/issues/955,"Deprecate an existing ROR record: + +SuperGen (United States)https://ror.org/049922318",SuperGen (United States),https://ror.org/049922318,https://ror.org/05fx1fs38,Astex Pharmaceuticals,Successor,Production +1010,https://github.com/ror-community/ror-updates/issues/1010,"Modify the information in an existing ROR record: +Sholokhov Moscow State University for Humanities https://ror.org/04dstfg97 +",Sholokhov Moscow State University for Humanities,https://ror.org/04dstfg97,https://ror.org/03a9mf398,Moscow State Pedagogical University,Successor,Production +1087,https://github.com/ror-community/ror-updates/issues/1087,Modify the information in an existing ROR record: Extreme Science and Engineering Discovery Environment - https://ror.org/05524hb64,Extreme Science and Engineering Discovery Environment,https://ror.org/05524hb64,https://ror.org/01v6d0b34,Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support,Successor,Production +1087,https://github.com/ror-community/ror-updates/issues/1087,Modify the information in an existing ROR record: Extreme Science and Engineering Discovery Environment - https://ror.org/05524hb64,Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support,https://ror.org/01v6d0b34,https://ror.org/05524hb64,Extreme Science and Engineering Discovery Environment,Predecessor,Release +1121,https://github.com/ror-community/ror-updates/issues/1121,"Merge two or more ROR records: + +Wellcome Library and Wellcome Collectionhttps://ror.org/05hde1z07 and https://ror.org/022awwm23",Wellcome Library,https://ror.org/05hde1z07,https://ror.org/022awwm23,Wellcome Collection,Successor,Production +1122,https://github.com/ror-community/ror-updates/issues/1122,Merge records: China National Center for Food Safety Risk Assessment - https://ror.org/03kcjz738 and https://ror.org/058mseb02,China National Centre for Food Safety Risk Assessment,https://ror.org/058mseb02,https://ror.org/03kcjz738,China National Center for Food Safety Risk Assessment,Successor,Production +1298,https://github.com/ror-community/ror-updates/issues/1298,Deprecate existing ROR record: Tekes - https://ror.org/02ag8cq23,Tekes,https://ror.org/02ag8cq23,https://ror.org/05bgf9v38,Business Finland,Successor,Production +1344,https://github.com/ror-community/ror-updates/issues/1344,Modify the information in an existing ROR record: International Union Against Tuberculosis and Lung Disease - https://ror.org/05s7dz794,International Union Against Tuberculosis and Lung Disease,https://ror.org/05s7dz794,https://ror.org/037x4qk98,International Union Against Tuberculosis and Lung Disease,Successor,Production +7,https://github.com/ror-community/ror-updates/issues/7,Investigate record: https://ror.org/01br3aa17,Biophysics Center of Armenian,https://ror.org/01br3aa17,https://ror.org/02yqgb753,Life Sciences International Postgraduate Educational Center,Successor,Production +7,https://github.com/ror-community/ror-updates/issues/7,Investigate record: https://ror.org/01br3aa17,Life Sciences International Postgraduate Educational Center,https://ror.org/02yqgb753,https://ror.org/01br3aa17,Biophysics Center of Armenian,Predecessor,Release +481,https://github.com/ror-community/ror-updates/issues/481,Redirect Laboratory of Hydrology and Geochemistry (https://ror.org/03y81da23),Laboratory of Hydrology and Geochemistry,https://ror.org/03y81da23,https://ror.org/0530qwm02,Earth and Environment Institute of Strasbourg,Successor,Production +481,https://github.com/ror-community/ror-updates/issues/481,Redirect Laboratory of Hydrology and Geochemistry (https://ror.org/03y81da23),Earth and Environment Institute of Strasbourg,https://ror.org/0530qwm02,https://ror.org/03y81da23,Laboratory of Hydrology and Geochemistry,Predecessor,Release +1311,https://github.com/ror-community/ror-updates/issues/1311,Withdraw existing ROR record: International Federation of Library Associations and Institutions - https://ror.org/02zbz4g27,International Federation of Library Associations and Institutions,https://ror.org/02zbz4g27,https://ror.org/026gatw61,International Federation of Library Associations and Institutions,Successor,Production +922,https://github.com/ror-community/ror-updates/issues/922,"Deprecate an existing ROR record: + +Department of Biomedicine Baselhttps://ror.org/03ybx0x41",Department of Biomedicine Basel,https://ror.org/03ybx0x41,https://ror.org/02s6k3f65,University of Basel,Successor,Production +1612,https://github.com/ror-community/ror-updates/issues/1612,Modify the information in an existing ROR record: Osaka City University - https://ror.org/02skfsw40,Osaka City University,https://ror.org/02skfsw40,https://ror.org/01hvx5h04,Osaka Metropolitan University,Successor,Production +1612,https://github.com/ror-community/ror-updates/issues/1612,Modify the information in an existing ROR record: Osaka City University - https://ror.org/02skfsw40,Osaka Metropolitan University,https://ror.org/01hvx5h04,https://ror.org/02skfsw40,Osaka City University,Predecessor,Release +1613,https://github.com/ror-community/ror-updates/issues/1613,Modify the information in an existing ROR record: - https://ror.org/02cf1je33,Osaka Prefecture University,https://ror.org/02cf1je33,https://ror.org/01hvx5h04,Osaka Metropolitan University,Successor,Production +1613,https://github.com/ror-community/ror-updates/issues/1613,Modify the information in an existing ROR record: - https://ror.org/02cf1je33,Osaka Metropolitan University,https://ror.org/01hvx5h04,https://ror.org/02cf1je33,Osaka Prefecture University,Predecessor,Release +1624,https://github.com/ror-community/ror-updates/issues/1624,Modify the information in an existing ROR record: Institute of Entomology - https://ror.org/039nazg33,Institute of Entomology,https://ror.org/039nazg33,https://ror.org/05pq4yn02,Biology Centre of the Czech Academy of Sciences,Successor,Production +1625,https://github.com/ror-community/ror-updates/issues/1625,Modify the information in an existing ROR record: Institute of Hydrobiology (ASCR) - https://ror.org/0436nxt45,Institute of Hydrobiology (ASCR),https://ror.org/0436nxt45,https://ror.org/05pq4yn02,Biology Centre of the Czech Academy of Sciences,Successor,Production +1627,https://github.com/ror-community/ror-updates/issues/1627,Modify the information in an existing ROR record: Institute of Parasitology - https://ror.org/05rhyza23,Institute of Parasitology,https://ror.org/05rhyza23,https://ror.org/05pq4yn02,Biology Centre of the Czech Academy of Sciences,Successor,Production +1628,https://github.com/ror-community/ror-updates/issues/1628,Modify the information in an existing ROR record: Institute of Plant Molecular Biology - https://ror.org/00jr65m43,Institute of Plant Molecular Biology,https://ror.org/00jr65m43,https://ror.org/05pq4yn02,Biology Centre of the Czech Academy of Sciences,Successor,Production +1629,https://github.com/ror-community/ror-updates/issues/1629,Modify the information in an existing ROR record: Institute of Soil Biology,Institute of Soil Biology,https://ror.org/02tz8r820,https://ror.org/05pq4yn02,Biology Centre of the Czech Academy of Sciences,Successor,Production +1630,https://github.com/ror-community/ror-updates/issues/1630,Modify the information in an existing ROR record: Mylan (United States) - https://ror.org/04nsw4151,Mylan (United States),https://ror.org/04nsw4151,https://ror.org/01g1gvr46,Viatris,Successor,Production +1631,https://github.com/ror-community/ror-updates/issues/1631,Modify the information in an existing ROR record: Mylan (Australia) - https://ror.org/05r35r527,Mylan (Australia),https://ror.org/05r35r527,https://ror.org/01g1gvr46,Viatris,Successor,Production +1632,https://github.com/ror-community/ror-updates/issues/1632,Modify the information in an existing ROR record: Mylan (Germany) - https://ror.org/04fmf8z66,Mylan (Germany),https://ror.org/04fmf8z66,https://ror.org/01g1gvr46,Viatris,Successor,Production +1633,https://github.com/ror-community/ror-updates/issues/1633,Modify the information in an existing ROR record: Mylan (India) - https://ror.org/039jjcy66,Mylan (India),https://ror.org/039jjcy66,https://ror.org/01g1gvr46,Viatris,Successor,Production +1634,https://github.com/ror-community/ror-updates/issues/1634,Modify the information in an existing ROR record: Mylan (Italy) - https://ror.org/04k443z34,Mylan (Italy),https://ror.org/04k443z34,https://ror.org/01g1gvr46,Viatris,Successor,Production +1635,https://github.com/ror-community/ror-updates/issues/1635,Modify the information in an existing ROR record: Mylan (South Africa) - https://ror.org/01gqqqf26,Mylan (South Africa),https://ror.org/01gqqqf26,https://ror.org/01g1gvr46,Viatris,Successor,Production +1636,https://github.com/ror-community/ror-updates/issues/1636,Modify the information in an existing ROR record: Mylan (Sweden) - https://ror.org/03jq8sq82,Mylan (Sweden),https://ror.org/03jq8sq82,https://ror.org/01g1gvr46,Viatris,Successor,Production +1637,https://github.com/ror-community/ror-updates/issues/1637,Modify the information in an existing ROR record: Mylan (Switzerland) - https://ror.org/045sjkt56,Mylan (Switzerland),https://ror.org/045sjkt56,https://ror.org/01g1gvr46,Viatris,Successor,Production +1638,https://github.com/ror-community/ror-updates/issues/1638,Modify the information in an existing ROR record: Mylan (United Kingdom) - https://ror.org/028rzxs74,Mylan (United Kingdom),https://ror.org/028rzxs74,https://ror.org/01g1gvr46,Viatris,Successor,Production +1646,https://github.com/ror-community/ror-updates/issues/1646,Deprecate a record: JDSU (Switzerland) - https://ror.org/00wz65j53,JDSU (Switzerland),https://ror.org/00wz65j53,https://ror.org/059a9e323,Viavi Solutions (United States),Successor,Production +1645,https://github.com/ror-community/ror-updates/issues/1645,Deprecate a record: JDSU (China) - https://ror.org/01d3ncs59,JDSU (China),https://ror.org/01d3ncs59,https://ror.org/059a9e323,Viavi Solutions (United States),Successor,Production +1647,https://github.com/ror-community/ror-updates/issues/1647,Deprecate a record: JDSU (Canada) - https://ror.org/025j82f41,JDSU (Canada),https://ror.org/025j82f41,https://ror.org/059a9e323,Viavi Solutions (United States),Successor,Production +1654,https://github.com/ror-community/ror-updates/issues/1654,Deprecate a ROR record: Okazaki National Research Institutes - https://ror.org/000d53575,Okazaki National Research Institutes,https://ror.org/000d53575,https://ror.org/055n47h92,National Institutes of Natural Sciences,Successor,Production +1654,https://github.com/ror-community/ror-updates/issues/1654,Deprecate a ROR record: Okazaki National Research Institutes - https://ror.org/000d53575,National Institutes of Natural Sciences,https://ror.org/055n47h92,https://ror.org/000d53575,Okazaki National Research Institutes,Predecessor,Release +1657,https://github.com/ror-community/ror-updates/issues/1657,Deprecate a ROR record: Kyushu Tokai University - https://ror.org/00w0f8567,Kyushu Tokai University,https://ror.org/00w0f8567,https://ror.org/01p7qe739,Tokai University,Successor,Production +1679,https://github.com/ror-community/ror-updates/issues/1679,Deprecate a ROR record: Suzugamine Women's College - https://ror.org/03yfxw954,Suzugamine Women's College,https://ror.org/03yfxw954,https://ror.org/05n757p35,Hiroshima Shudo University,Successor,Production +1669,https://github.com/ror-community/ror-updates/issues/1669,Deprecate a ROR record: Iwate College of Nursing - https://ror.org/0524wfr80,Iwate College of Nursing,https://ror.org/0524wfr80,https://ror.org/04cybtr86,Iwate Medical University,Successor,Production +1668,https://github.com/ror-community/ror-updates/issues/1668,Deprecate a ROR record: Aichi Kiwami College of Nursing - https://ror.org/02c8z2835,Aichi Kiwami College of Nursing,https://ror.org/02c8z2835,https://ror.org/04gzb3214,Yamazaki Gakuen University,Successor,Production +1552,https://github.com/ror-community/ror-updates/issues/1552,"Modify the information in an existing ROR record: Ministry of Research, Technology and Higher Education - https://ror.org/005m60g68","Ministry of Research, Technology and Higher Education",https://ror.org/005m60g68,https://ror.org/02hmjzt55,National Research and Innovation Agency,Successor,Production +1555,https://github.com/ror-community/ror-updates/issues/1555,Modify the information in an existing ROR record: Indonesian National Institute of Aeronautics and Space - https://ror.org/027p4qx72,Indonesian National Institute of Aeronautics and Space,https://ror.org/027p4qx72,https://ror.org/02hmjzt55,National Research and Innovation Agency,Successor,Production +1554,https://github.com/ror-community/ror-updates/issues/1554,Modify the information in an existing ROR record: National Nuclear Energy Agency of Indonesia - https://ror.org/058thb585,National Nuclear Energy Agency of Indonesia,https://ror.org/058thb585,https://ror.org/02hmjzt55,National Research and Innovation Agency,Successor,Production +1553,https://github.com/ror-community/ror-updates/issues/1553,Modify the information in an existing ROR record: Badan Pengkajian dan Penerapan Teknologi - https://ror.org/058thb585,Badan Pengkajian dan Penerapan Teknologi,https://ror.org/058thb585,https://ror.org/02hmjzt55,National Research and Innovation Agency,Successor,Production +1556,https://github.com/ror-community/ror-updates/issues/1556,Modify the information in an existing ROR record: Eijkman Institute for Molecular Biology,Eijkman Institute for Molecular Biology,https://ror.org/0308s4091,https://ror.org/02hmjzt55,National Research and Innovation Agency,Successor,Production +160,https://github.com/ror-community/ror-updates/issues/160,Redirect Instytut Biotechnologii i Antybiotyków (https://ror.org/024za3n32),,https://ror.org/024za3n32,https://ror.org/00jhf1r34,Łukasiewicz Research Network - Industrial Chemistry Institute,Successor,Production +329,https://github.com/ror-community/ror-updates/issues/329,Merge two or more ROR records: https://ror.org/01brr3227 and https://ror.org/01e59yk92,,https://ror.org/01brr3227,https://ror.org/01e59yk92,Swedish e-Science Research Centre,Successor,Production +331,https://github.com/ror-community/ror-updates/issues/331,Merge two or more ROR records: https://ror.org/03kcjz738 and https://ror.org/058mseb02,,https://ror.org/058mseb02,https://ror.org/03kcjz738,China National Center for Food Safety Risk Assessment,Successor,Production +330,https://github.com/ror-community/ror-updates/issues/330,Merge two or more ROR records: https://ror.org/04mknbs38 and https://ror.org/012wsxz85,,https://ror.org/04mknbs38,https://ror.org/012wsxz85,State Key Laboratory of Hydrology-Water Resources and Hydraulic Engineering,Successor,Production +1725,https://github.com/ror-community/ror-updates/issues/1725,Modify the information in an existing ROR record: Athlone Institute of Technology - https://ror.org/02dyxwz31,Athlone Institute of Technology,https://ror.org/02dyxwz31,https://ror.org/04efm0253,Technological University of the Shannon: Midlands Midwest,Successor,Production +1725,https://github.com/ror-community/ror-updates/issues/1725,Modify the information in an existing ROR record: Athlone Institute of Technology - https://ror.org/02dyxwz31,Technological University of the Shannon: Midlands Midwest,https://ror.org/04efm0253,https://ror.org/02dyxwz31,Athlone Institute of Technology,Predecessor,Release +1726,https://github.com/ror-community/ror-updates/issues/1726,Modify the information in an existing ROR record: Limerick Institute of Technology - https://ror.org/0269ncv24,Limerick Institute of Technolog,https://ror.org/0269ncv24,https://ror.org/04efm0253,Technological University of the Shannon: Midlands Midwest,Successor,Production +1726,https://github.com/ror-community/ror-updates/issues/1726,Modify the information in an existing ROR record: Limerick Institute of Technology - https://ror.org/0269ncv24,Technological University of the Shannon: Midlands Midwest,https://ror.org/04efm0253,https://ror.org/0269ncv24,Limerick Institute of Technolog,Predecessor,Release +1727,https://github.com/ror-community/ror-updates/issues/1727,Deprecate an existing ROR record: Max Planck Institute of Experimental Medicine - https://ror.org/04a7f6w43,Max Planck Institute of Experimental Medicine,https://ror.org/04a7f6w43,https://ror.org/03av75f26,Max Planck Institute for Multidisciplinary Sciences,Successor,Production +1727,https://github.com/ror-community/ror-updates/issues/1727,Deprecate an existing ROR record: Max Planck Institute of Experimental Medicine - https://ror.org/04a7f6w43,Max Planck Institute for Multidisciplinary Sciences,https://ror.org/03av75f26,https://ror.org/04a7f6w43,Max Planck Institute of Experimental Medicine,Predecessor,Release +1728,https://github.com/ror-community/ror-updates/issues/1728,Deprecate an existing ROR record: Max Planck Institute for Biophysical Chemistry - https://ror.org/03e76ya46,Max Planck Institute for Biophysical Chemistry,https://ror.org/03e76ya46,https://ror.org/03av75f26,Max Planck Institute for Multidisciplinary Sciences,Successor,Production +1728,https://github.com/ror-community/ror-updates/issues/1728,Deprecate an existing ROR record: Max Planck Institute for Biophysical Chemistry - https://ror.org/03e76ya46,Max Planck Institute for Multidisciplinary Sciences,https://ror.org/03av75f26,https://ror.org/03e76ya46,Max Planck Institute for Biophysical Chemistry,Predecessor,Release +465,https://github.com/ror-community/ror-updates/issues/465,"Merge two or more ROR records: + +",Kangdong Sacred Heart Hospital,https://ror.org/00hr1eg19,https://ror.org/00njt2653,Hallym University Kangnam Sacred Heart Hospital,Successor,Production +288,https://github.com/ror-community/ror-updates/issues/288,Merge two or more ROR records: https://ror.org/02kcbn207 and https://ror.org/03baec336 ,,https://ror.org/03baec336,https://ror.org/02kcbn207,Imec,Successor,Production +143,https://github.com/ror-community/ror-updates/issues/143,Retire or merge Conexant (https://ror.org/05rx1xe20),Conexant,https://ror.org/05rx1xe20,https://ror.org/031tq8403,Synaptics (United States),Successor,Production +570,https://github.com/ror-community/ror-updates/issues/570,Deprecate/Redirect Center of Advanced European Studies and Research - https://ror.org/05350h943,,https://ror.org/05350h943,https://ror.org/02yjyfs84,Max Planck Institute for Neurobiology of Behavior – caesar,Successor,Production +1730,https://github.com/ror-community/ror-updates/issues/1730,Deprecate an existing ROR record: Galway-Mayo Institute of Technology - https://ror.org/024j9sx72,Galway-Mayo Institute of Technology,https://ror.org/024j9sx72,https://ror.org/0458dap48,Atlantic Technological University,Successor,Production +1730,https://github.com/ror-community/ror-updates/issues/1730,Deprecate an existing ROR record: Galway-Mayo Institute of Technology - https://ror.org/024j9sx72,Atlantic Technological University,https://ror.org/0458dap48,https://ror.org/024j9sx72,Galway-Mayo Institute of Technology,Predecessor,Release +1731,https://github.com/ror-community/ror-updates/issues/1731,Deprecate an existing ROR record: Letterkenny Institute of Technology - https://ror.org/04ps1tq95,Letterkenny Institute of Technology,https://ror.org/04ps1tq95,https://ror.org/0458dap48,Atlantic Technological University,Successor,Production +1731,https://github.com/ror-community/ror-updates/issues/1731,Deprecate an existing ROR record: Letterkenny Institute of Technology - https://ror.org/04ps1tq95,Atlantic Technological University,https://ror.org/0458dap48,https://ror.org/04ps1tq95,Letterkenny Institute of Technology,Predecessor,Release +1732,https://github.com/ror-community/ror-updates/issues/1732,Deprecate an existing ROR record: Institute of Technology Sligo - https://ror.org/032fvf508,Institute of Technology Sligo,https://ror.org/032fvf508,https://ror.org/0458dap48,Atlantic Technological University,Successor,Production +1732,https://github.com/ror-community/ror-updates/issues/1732,Deprecate an existing ROR record: Institute of Technology Sligo - https://ror.org/032fvf508,Atlantic Technological University,https://ror.org/0458dap48,https://ror.org/032fvf508,Institute of Technology Sligo,Predecessor,Release +249,https://github.com/ror-community/ror-updates/issues/249,Merge duplicate records for The Nature Conservancy,The Nature Conservancy,https://ror.org/00gcd8h55,https://ror.org/0563w1497,The Nature Conservancy,Successor,Production From b9da081ed6965eab7f1c76e1251cb10283c75519 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 5 Apr 2023 09:11:42 -0500 Subject: [PATCH 47/49] add v1.23 --- v1.23/00gkzs980.json | 93 ++++++++++++++++++++ v1.23/00hhjz250.json | 86 +++++++++++++++++++ v1.23/00kj76376.json | 93 ++++++++++++++++++++ v1.23/01car3s57.json | 93 ++++++++++++++++++++ v1.23/01y2yb643.json | 93 ++++++++++++++++++++ v1.23/02b5sc606.json | 82 ++++++++++++++++++ v1.23/02exh3e86.json | 84 ++++++++++++++++++ v1.23/02qr0r046.json | 93 ++++++++++++++++++++ v1.23/02vt3a358.json | 93 ++++++++++++++++++++ v1.23/02wd6rd97.json | 87 +++++++++++++++++++ v1.23/031d6d035.json | 93 ++++++++++++++++++++ v1.23/03ppt4w11.json | 93 ++++++++++++++++++++ v1.23/03zexf287.json | 87 +++++++++++++++++++ v1.23/04jfcs144.json | 93 ++++++++++++++++++++ v1.23/04wgnd003.json | 93 ++++++++++++++++++++ v1.23/04ybswa04.json | 87 +++++++++++++++++++ v1.23/04zck7a21.json | 80 +++++++++++++++++ v1.23/04zhhyn23.json | 141 ++++++++++++++++++++++++++++++ v1.23/04zvj8c18.json | 185 ++++++++++++++++++++++++++++++++++++++++ v1.23/0503qew83.json | 87 +++++++++++++++++++ v1.23/05cvfcr44.json | 141 ++++++++++++++++++++++++++++++ v1.23/05detrt70.json | 82 ++++++++++++++++++ v1.23/05h5x3r78.json | 93 ++++++++++++++++++++ v1.23/05xc0qp17.json | 91 ++++++++++++++++++++ v1.23/relationships.csv | 53 ++++++++++++ 25 files changed, 2396 insertions(+) create mode 100644 v1.23/00gkzs980.json create mode 100644 v1.23/00hhjz250.json create mode 100644 v1.23/00kj76376.json create mode 100644 v1.23/01car3s57.json create mode 100644 v1.23/01y2yb643.json create mode 100644 v1.23/02b5sc606.json create mode 100644 v1.23/02exh3e86.json create mode 100644 v1.23/02qr0r046.json create mode 100644 v1.23/02vt3a358.json create mode 100644 v1.23/02wd6rd97.json create mode 100644 v1.23/031d6d035.json create mode 100644 v1.23/03ppt4w11.json create mode 100644 v1.23/03zexf287.json create mode 100644 v1.23/04jfcs144.json create mode 100644 v1.23/04wgnd003.json create mode 100644 v1.23/04ybswa04.json create mode 100644 v1.23/04zck7a21.json create mode 100644 v1.23/04zhhyn23.json create mode 100644 v1.23/04zvj8c18.json create mode 100644 v1.23/0503qew83.json create mode 100644 v1.23/05cvfcr44.json create mode 100644 v1.23/05detrt70.json create mode 100644 v1.23/05h5x3r78.json create mode 100644 v1.23/05xc0qp17.json create mode 100644 v1.23/relationships.csv diff --git a/v1.23/00gkzs980.json b/v1.23/00gkzs980.json new file mode 100644 index 000000000..8f4eaa757 --- /dev/null +++ b/v1.23/00gkzs980.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://iza2.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Institute of Archaeology", + "wikipedia_url": "https://sl.wikipedia.org/wiki/In%C5%A1titut_za_arheologijo_(ZRC_SAZU)", + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1955 2823", + "all": [ + "0000 0001 1955 2823" + ] + }, + "Wikidata": { + "preferred": "Q12791393", + "all": [ + "Q12791393" + ] + } + }, + "established": 1972, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/00gkzs980", + "labels": [ + { + "label": "Inštitut za arheologijo", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/00hhjz250.json b/v1.23/00hhjz250.json new file mode 100644 index 000000000..d3218b391 --- /dev/null +++ b/v1.23/00hhjz250.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Atmospheric Chemistry Observations and Modeling", + "Atmospheric Chemistry Observations and Modeling Laboratory", + "Atmospheric Chemistry Observations & Modeling Laboratory" + ], + "acronyms": [ + "ACOM" + ], + "links": [ + "https://www2.acom.ucar.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Atmospheric Chemistry Observations & Modeling", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "name": "Colorado", + "ascii_name": "Colorado", + "id": 5417618, + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Boulder", + "id": 5574999, + "ascii_name": "Boulder", + "code": "US.CO.013" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "National Center for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/05cvfcr44" + }, + { + "label": "University Corporation for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/04zhhyn23" + } + ], + "email_address": null, + "id": "https://ror.org/00hhjz250", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/00kj76376.json b/v1.23/00kj76376.json new file mode 100644 index 000000000..f51c50d88 --- /dev/null +++ b/v1.23/00kj76376.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://giam.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Anton Melik Geographical Institute", + "wikipedia_url": "https://sl.wikipedia.org/wiki/Geografski_in%C5%A1titut_Antona_Melika", + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1091 1084", + "all": [ + "0000 0001 1091 1084" + ] + }, + "Wikidata": { + "preferred": "Q3507777", + "all": [ + "Q3507777" + ] + } + }, + "established": 1946, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/00kj76376", + "labels": [ + { + "label": "Geografski inštitut Antona Melika", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/01car3s57.json b/v1.23/01car3s57.json new file mode 100644 index 000000000..9978f09f5 --- /dev/null +++ b/v1.23/01car3s57.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://zimk.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Milko Kos Historical Institute", + "wikipedia_url": "https://en.wikipedia.org/wiki/Milko_Kos_Historical_Institute", + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8509 7147", + "all": [ + "0000 0000 8509 7147" + ] + }, + "Wikidata": { + "preferred": "Q6858110", + "all": [ + "Q6858110" + ] + } + }, + "established": 1947, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/01car3s57", + "labels": [ + { + "label": "Zgodovinski inštitut Milka Kosa", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/01y2yb643.json b/v1.23/01y2yb643.json new file mode 100644 index 000000000..24dad8f92 --- /dev/null +++ b/v1.23/01y2yb643.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://piir.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Ivan Rakovec Institute of Palaeontology", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 9196 3785", + "all": [ + "0000 0000 9196 3785" + ] + }, + "Wikidata": { + "preferred": "Q49236805", + "all": [ + "Q49236805" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/01y2yb643", + "labels": [ + { + "label": "Paleontološki inštitut Ivana Rakovca", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/02b5sc606.json b/v1.23/02b5sc606.json new file mode 100644 index 000000000..f11266c1e --- /dev/null +++ b/v1.23/02b5sc606.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "EOL" + ], + "links": [ + "https://www.eol.ucar.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Earth Observing Laboratory", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "name": "Colorado", + "ascii_name": "Colorado", + "id": 5417618, + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Boulder", + "id": 5574999, + "ascii_name": "Boulder", + "code": "US.CO.013" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "National Center for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/05cvfcr44" + }, + { + "label": "University Corporation for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/04zhhyn23" + } + ], + "email_address": null, + "id": "https://ror.org/02b5sc606", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/02exh3e86.json b/v1.23/02exh3e86.json new file mode 100644 index 000000000..7e8c6acfb --- /dev/null +++ b/v1.23/02exh3e86.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Mesoscale and Microscale Meteorology Laboratory" + ], + "acronyms": [ + "MMM" + ], + "links": [ + "https://www.mmm.ucar.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Mesoscale & Microscale Meteorology Laboratory", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "name": "Colorado", + "ascii_name": "Colorado", + "id": 5417618, + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Boulder", + "id": 5574999, + "ascii_name": "Boulder", + "code": "US.CO.013" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "National Center for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/05cvfcr44" + }, + { + "label": "University Corporation for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/04zhhyn23" + } + ], + "email_address": null, + "id": "https://ror.org/02exh3e86", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/02qr0r046.json b/v1.23/02qr0r046.json new file mode 100644 index 000000000..d7494191d --- /dev/null +++ b/v1.23/02qr0r046.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://uifs.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "France Stele Institute of Art History", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0664 2387", + "all": [ + "0000 0001 0664 2387" + ] + }, + "Wikidata": { + "preferred": "Q49236614", + "all": [ + "Q49236614" + ] + } + }, + "established": 1972, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/02qr0r046", + "labels": [ + { + "label": "Umetnostnozgodovinski inštitut Franceta Steleta", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/02vt3a358.json b/v1.23/02vt3a358.json new file mode 100644 index 000000000..5a5c0892e --- /dev/null +++ b/v1.23/02vt3a358.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://fi2.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Institute of Philosophy", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0621 8967", + "all": [ + "0000 0004 0621 8967" + ] + }, + "Wikidata": { + "preferred": "Q49237859", + "all": [ + "Q49237859" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/02vt3a358", + "labels": [ + { + "label": "Filozofski inštitut", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/02wd6rd97.json b/v1.23/02wd6rd97.json new file mode 100644 index 000000000..fa88ca38a --- /dev/null +++ b/v1.23/02wd6rd97.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://dmi.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Sociomedical Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q49238110", + "all": [ + "Q49238110" + ] + } + }, + "established": 1981, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/02wd6rd97", + "labels": [ + { + "label": "Družbenomedicinski inštitut", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/031d6d035.json b/v1.23/031d6d035.json new file mode 100644 index 000000000..044957bbd --- /dev/null +++ b/v1.23/031d6d035.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://isn2.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Institute of Slovenian Ethnology", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2192 7815", + "all": [ + "0000 0001 2192 7815" + ] + }, + "Wikidata": { + "preferred": "Q49236930", + "all": [ + "Q49236930" + ] + } + }, + "established": 1951, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/031d6d035", + "labels": [ + { + "label": "Inštitut za slovensko narodopisje", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/03ppt4w11.json b/v1.23/03ppt4w11.json new file mode 100644 index 000000000..97b03bbdc --- /dev/null +++ b/v1.23/03ppt4w11.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://bijh.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Jovan Hadži Institute of Biology", + "wikipedia_url": "https://sl.wikipedia.org/wiki/Biolo%C5%A1ki_in%C5%A1titut_Jovana_Had%C5%BEija", + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8838 8126", + "all": [ + "0000 0000 8838 8126" + ] + }, + "Wikidata": { + "preferred": "Q12785900", + "all": [ + "Q12785900" + ] + } + }, + "established": 1950, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/03ppt4w11", + "labels": [ + { + "label": "Biološki inštitut Jovana Hadžija", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/03zexf287.json b/v1.23/03zexf287.json new file mode 100644 index 000000000..6ae9952e7 --- /dev/null +++ b/v1.23/03zexf287.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://ikz.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Institute of Cultural History", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q49237415", + "all": [ + "Q49237415" + ] + } + }, + "established": 2005, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/03zexf287", + "labels": [ + { + "label": "Inštitut za kulturno zgodovino", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/04jfcs144.json b/v1.23/04jfcs144.json new file mode 100644 index 000000000..6e708fb65 --- /dev/null +++ b/v1.23/04jfcs144.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://isjfr.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Fran Ramovš Institute of the Slovenian Language", + "wikipedia_url": "https://sl.wikipedia.org/wiki/In%C5%A1titut_za_slovenski_jezik_Frana_Ramov%C5%A1a", + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2152 1129", + "all": [ + "0000 0001 2152 1129" + ] + }, + "Wikidata": { + "preferred": "Q20523135", + "all": [ + "Q20523135" + ] + } + }, + "established": 1946, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/04jfcs144", + "labels": [ + { + "label": "Inštitut za slovenski jezik Frana Ramovša", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/04wgnd003.json b/v1.23/04wgnd003.json new file mode 100644 index 000000000..03149216b --- /dev/null +++ b/v1.23/04wgnd003.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://isllv.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Institute of Slovenian Literature and Literary Studies", + "wikipedia_url": "https://sl.wikipedia.org/wiki/In%C5%A1titut_za_slovensko_literaturo_in_literarne_vede", + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0754 3997", + "all": [ + "0000 0001 0754 3997" + ] + }, + "Wikidata": { + "preferred": "Q20523146", + "all": [ + "Q20523146" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/04wgnd003", + "labels": [ + { + "label": "Inštitut za slovensko literaturo in literarne vede", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/04ybswa04.json b/v1.23/04ybswa04.json new file mode 100644 index 000000000..0fda15b4c --- /dev/null +++ b/v1.23/04ybswa04.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://gni.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Institute of Ethnomusicology", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q49237735", + "all": [ + "Q49237735" + ] + } + }, + "established": 1934, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/04ybswa04", + "labels": [ + { + "label": "Glasbenonarodopisni inštitut", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/04zck7a21.json b/v1.23/04zck7a21.json new file mode 100644 index 000000000..c5c38ba89 --- /dev/null +++ b/v1.23/04zck7a21.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://ikss.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Institute of Culture and Memory Studies", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": 2008, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/04zck7a21", + "labels": [ + { + "label": "Inštitut za kulturne in spominske študije", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/04zhhyn23.json b/v1.23/04zhhyn23.json new file mode 100644 index 000000000..e09b173b6 --- /dev/null +++ b/v1.23/04zhhyn23.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/04zhhyn23", + "name": "University Corporation for Atmospheric Research", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Climate and Global Dynamics Laboratory", + "type": "Child", + "id": "https://ror.org/03qrb1j36" + }, + { + "label": "High Altitude Observatory", + "type": "Child", + "id": "https://ror.org/03773p874" + }, + { + "label": "National Center for Atmospheric Research", + "type": "Child", + "id": "https://ror.org/05cvfcr44" + }, + { + "label": "Atmospheric Chemistry Observations & Modeling", + "type": "Child", + "id": "https://ror.org/00hhjz250" + }, + { + "label": "Computational & Information Systems Laboratory", + "type": "Child", + "id": "https://ror.org/05xc0qp17" + }, + { + "label": "Earth Observing Laboratory", + "type": "Child", + "id": "https://ror.org/02b5sc606" + }, + { + "label": "Mesoscale & Microscale Meteorology Laboratory", + "type": "Child", + "id": "https://ror.org/02exh3e86" + }, + { + "label": "Research Applications Laboratory", + "type": "Child", + "id": "https://ror.org/05detrt70" + } + ], + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "name": "Colorado", + "id": 5417618, + "ascii_name": "Colorado", + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Boulder", + "id": 5574999, + "ascii_name": "Boulder", + "code": "US.CO.013" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www2.ucar.edu/" + ], + "aliases": [], + "acronyms": [ + "UCAR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_Corporation_for_Atmospheric_Research", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9807 2096" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100005626" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "478695" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3366349" + ] + }, + "GRID": { + "preferred": "grid.413455.2", + "all": "grid.413455.2" + } + } +} \ No newline at end of file diff --git a/v1.23/04zvj8c18.json b/v1.23/04zvj8c18.json new file mode 100644 index 000000000..8268eaa5e --- /dev/null +++ b/v1.23/04zvj8c18.json @@ -0,0 +1,185 @@ +{ + "id": "https://ror.org/04zvj8c18", + "name": "Research Centre of the Slovenian Academy of Sciences and Arts", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Slovenian Academy of Sciences and Arts", + "type": "Related", + "id": "https://ror.org/04evj0n95" + }, + { + "label": "Institute of Musicology", + "type": "Child", + "id": "https://ror.org/02car4a12" + }, + { + "label": "Karst Research Institute", + "type": "Child", + "id": "https://ror.org/01ffqaw45" + }, + { + "label": "Anton Melik Geographical Institute", + "type": "Child", + "id": "https://ror.org/00kj76376" + }, + { + "label": "Fran Ramovš Institute of the Slovenian Language", + "type": "Child", + "id": "https://ror.org/04jfcs144" + }, + { + "label": "Institute of Anthropological and Spatial Studies", + "type": "Child", + "id": "https://ror.org/05h5x3r78" + }, + { + "label": "Institute of Archaeology", + "type": "Child", + "id": "https://ror.org/00gkzs980" + }, + { + "label": "Institute of Cultural History", + "type": "Child", + "id": "https://ror.org/03zexf287" + }, + { + "label": "Institute of Culture and Memory Studies", + "type": "Child", + "id": "https://ror.org/04zck7a21" + }, + { + "label": "Institute of Ethnomusicology", + "type": "Child", + "id": "https://ror.org/04ybswa04" + }, + { + "label": "Institute of Philosophy", + "type": "Child", + "id": "https://ror.org/02vt3a358" + }, + { + "label": "Institute of Slovenian Ethnology", + "type": "Child", + "id": "https://ror.org/031d6d035" + }, + { + "label": "Institute of Slovenian Literature and Literary Studies", + "type": "Child", + "id": "https://ror.org/04wgnd003" + }, + { + "label": "Jovan Hadži Institute of Biology", + "type": "Child", + "id": "https://ror.org/03ppt4w11" + }, + { + "label": "Ivan Rakovec Institute of Palaeontology", + "type": "Child", + "id": "https://ror.org/01y2yb643" + }, + { + "label": "Slovenian Migration Institute", + "type": "Child", + "id": "https://ror.org/0503qew83" + }, + { + "label": "Sociomedical Institute", + "type": "Child", + "id": "https://ror.org/02wd6rd97" + }, + { + "label": "France Stele Institute of Art History", + "type": "Child", + "id": "https://ror.org/02qr0r046" + }, + { + "label": "Milko Kos Historical Institute", + "type": "Child", + "id": "https://ror.org/01car3s57" + } + ], + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "id": 3239318, + "ascii_name": "Ljubljana", + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3190538 + } + ], + "links": [ + "https://www.zrc-sazu.si/en" + ], + "aliases": [], + "acronyms": [ + "ZRC SAZU" + ], + "status": "active", + "wikipedia_url": "https://sl.wikipedia.org/wiki/Znanstvenoraziskovalni_center_Slovenske_akademije_znanosti_in_umetnosti", + "labels": [ + { + "label": "Znanstvenoraziskovalni center\nSlovenske akademije znanosti in umetnosti", + "iso639": "sl" + } + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2176 5262", + "all": [ + "0000 0001 2176 5262" + ] + }, + "Wikidata": { + "preferred": "Q15977604", + "all": [ + "Q15977604" + ] + } + } +} \ No newline at end of file diff --git a/v1.23/0503qew83.json b/v1.23/0503qew83.json new file mode 100644 index 000000000..b9b8c8405 --- /dev/null +++ b/v1.23/0503qew83.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://isim.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Slovenian Migration Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q49237039", + "all": [ + "Q49237039" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/0503qew83", + "labels": [ + { + "label": "Inštitut za slovensko izseljenstvo in migracije", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/05cvfcr44.json b/v1.23/05cvfcr44.json new file mode 100644 index 000000000..1a5d6d2f5 --- /dev/null +++ b/v1.23/05cvfcr44.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/05cvfcr44", + "name": "National Center for Atmospheric Research", + "email_address": null, + "ip_addresses": [], + "established": 1930, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "University Corporation for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/04zhhyn23" + }, + { + "label": "Climate and Global Dynamics Laboratory", + "type": "Child", + "id": "https://ror.org/03qrb1j36" + }, + { + "label": "Atmospheric Chemistry Observations & Modeling", + "type": "Child", + "id": "https://ror.org/00hhjz250" + }, + { + "label": "Computational & Information Systems Laboratory", + "type": "Child", + "id": "https://ror.org/05xc0qp17" + }, + { + "label": "Earth Observing Laboratory", + "type": "Child", + "id": "https://ror.org/02b5sc606" + }, + { + "label": "Mesoscale & Microscale Meteorology Laboratory", + "type": "Child", + "id": "https://ror.org/02exh3e86" + }, + { + "label": "Research Applications Laboratory", + "type": "Child", + "id": "https://ror.org/05detrt70" + } + ], + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "name": "Colorado", + "id": 5417618, + "ascii_name": "Colorado", + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Boulder", + "id": 5574999, + "ascii_name": "Boulder", + "code": "US.CO.013" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://ncar.ucar.edu/" + ], + "aliases": [], + "acronyms": [ + "NCAR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/National_Center_for_Atmospheric_Research", + "labels": [ + { + "label": "Centro Nacional de Investigación Atmosférica", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0637 9680" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100005323" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4014614" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q934589" + ] + }, + "GRID": { + "preferred": "grid.57828.30", + "all": "grid.57828.30" + } + } +} \ No newline at end of file diff --git a/v1.23/05detrt70.json b/v1.23/05detrt70.json new file mode 100644 index 000000000..9bac778ba --- /dev/null +++ b/v1.23/05detrt70.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "RAL" + ], + "links": [ + "https://ral.ucar.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Research Applications Laboratory", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "name": "Colorado", + "ascii_name": "Colorado", + "id": 5417618, + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Boulder", + "id": 5574999, + "ascii_name": "Boulder", + "code": "US.CO.013" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "National Center for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/05cvfcr44" + }, + { + "label": "University Corporation for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/04zhhyn23" + } + ], + "email_address": null, + "id": "https://ror.org/05detrt70", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/05h5x3r78.json b/v1.23/05h5x3r78.json new file mode 100644 index 000000000..bda59411f --- /dev/null +++ b/v1.23/05h5x3r78.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://iaps.zrc-sazu.si" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "Institute of Anthropological and Spatial Studies", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.05108, + "lng": 14.50513, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Ljubljana", + "geonames_city": { + "id": 3196359, + "city": "Ljubljana", + "geonames_admin1": { + "name": "Ljubljana", + "ascii_name": "Ljubljana", + "id": 3239318, + "code": "SI.61" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4649 4034", + "all": [ + "0000 0004 4649 4034" + ] + }, + "Wikidata": { + "preferred": "Q49237597", + "all": [ + "Q49237597" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Research Centre of the Slovenian Academy of Sciences and Arts", + "type": "Parent", + "id": "https://ror.org/04zvj8c18" + } + ], + "email_address": null, + "id": "https://ror.org/05h5x3r78", + "labels": [ + { + "label": "Inštitut za antropološke in prostorske študije", + "iso639": "sl" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/05xc0qp17.json b/v1.23/05xc0qp17.json new file mode 100644 index 000000000..4e00bb98b --- /dev/null +++ b/v1.23/05xc0qp17.json @@ -0,0 +1,91 @@ +{ + "ip_addresses": [], + "aliases": [ + "Computational and Information Systems Laboratory" + ], + "acronyms": [ + "CISL" + ], + "links": [ + "https://www2.cisl.ucar.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Computational & Information Systems Laboratory", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.01499, + "lng": -105.27055, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Boulder", + "geonames_city": { + "id": 5574991, + "city": "Boulder", + "geonames_admin1": { + "name": "Colorado", + "ascii_name": "Colorado", + "id": 5417618, + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Boulder", + "id": 5574999, + "ascii_name": "Boulder", + "code": "US.CO.013" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "100019090", + "all": [ + "100019090" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "National Center for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/05cvfcr44" + }, + { + "label": "University Corporation for Atmospheric Research", + "type": "Parent", + "id": "https://ror.org/04zhhyn23" + } + ], + "email_address": null, + "id": "https://ror.org/05xc0qp17", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.23/relationships.csv b/v1.23/relationships.csv new file mode 100644 index 000000000..e3a500e24 --- /dev/null +++ b/v1.23/relationships.csv @@ -0,0 +1,53 @@ +Issue # from Github,Issue URL,Issue title from Github,Name of org in Record ID,Record ID,Related ID,Name of org in Related ID,Relationship of Related ID to Record ID,Current location of Related ID +,,,Atmospheric Chemistry Observations & Modeling,https://ror.org/00hhjz250,https://ror.org/05cvfcr44,National Center for Atmospheric Research,Parent,Production +,,,National Center for Atmospheric Research,https://ror.org/05cvfcr44,https://ror.org/00hhjz250,Atmospheric Chemistry Observations & Modeling,Child,Release +,,,Atmospheric Chemistry Observations & Modeling,https://ror.org/00hhjz250,https://ror.org/04zhhyn23,University Corporation for Atmospheric Research,Parent,Production +,,,University Corporation for Atmospheric Research,https://ror.org/04zhhyn23,https://ror.org/00hhjz250,Atmospheric Chemistry Observations & Modeling,Child,Release +,,,Computational & Information Systems Laboratory,https://ror.org/05xc0qp17,https://ror.org/05cvfcr44,National Center for Atmospheric Research,Parent,Production +,,,National Center for Atmospheric Research,https://ror.org/05cvfcr44,https://ror.org/05xc0qp17,Computational & Information Systems Laboratory,Child,Release +,,,Computational & Information Systems Laboratory,https://ror.org/05xc0qp17,https://ror.org/04zhhyn23,University Corporation for Atmospheric Research,Parent,Production +,,,University Corporation for Atmospheric Research,https://ror.org/04zhhyn23,https://ror.org/05xc0qp17,Computational & Information Systems Laboratory,Child,Release +,,,Earth Observing Laboratory,https://ror.org/02b5sc606,https://ror.org/05cvfcr44,National Center for Atmospheric Research,Parent,Production +,,,National Center for Atmospheric Research,https://ror.org/05cvfcr44,https://ror.org/02b5sc606,Earth Observing Laboratory,Child,Release +,,,Earth Observing Laboratory,https://ror.org/02b5sc606,https://ror.org/04zhhyn23,University Corporation for Atmospheric Research,Parent,Production +,,,University Corporation for Atmospheric Research,https://ror.org/04zhhyn23,https://ror.org/02b5sc606,Earth Observing Laboratory,Child,Release +,,,Mesoscale & Microscale Meteorology Laboratory,https://ror.org/02exh3e86,https://ror.org/05cvfcr44,National Center for Atmospheric Research,Parent,Production +,,,National Center for Atmospheric Research,https://ror.org/05cvfcr44,https://ror.org/02exh3e86,Mesoscale & Microscale Meteorology Laboratory,Child,Release +,,,Mesoscale & Microscale Meteorology Laboratory,https://ror.org/02exh3e86,https://ror.org/04zhhyn23,University Corporation for Atmospheric Research,Parent,Production +,,,University Corporation for Atmospheric Research,https://ror.org/04zhhyn23,https://ror.org/02exh3e86,Mesoscale & Microscale Meteorology Laboratory,Child,Release +,,,Research Applications Laboratory,https://ror.org/05detrt70,https://ror.org/05cvfcr44,National Center for Atmospheric Research,Parent,Production +,,,National Center for Atmospheric Research,https://ror.org/05cvfcr44,https://ror.org/05detrt70,Research Applications Laboratory,Child,Release +,,,Research Applications Laboratory,https://ror.org/05detrt70,https://ror.org/04zhhyn23,University Corporation for Atmospheric Research,Parent,Production +,,,University Corporation for Atmospheric Research,https://ror.org/04zhhyn23,https://ror.org/05detrt70,Research Applications Laboratory,Child,Release +,,,Anton Melik Geographical Institute,https://ror.org/00kj76376,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/00kj76376,Anton Melik Geographical Institute,Child,Release +,,,Fran Ramovš Institute of the Slovenian Language,https://ror.org/04jfcs144,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/04jfcs144,Fran Ramovš Institute of the Slovenian Language,Child,Release +,,,Institute of Anthropological and Spatial Studies,https://ror.org/05h5x3r78,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/05h5x3r78,Institute of Anthropological and Spatial Studies,Child,Release +,,,Institute of Archaeology,https://ror.org/00gkzs980,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/00gkzs980,Institute of Archaeology,Child,Release +,,,Institute of Cultural History,https://ror.org/03zexf287,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/03zexf287,Institute of Cultural History,Child,Release +,,,Institute of Culture and Memory Studies,https://ror.org/04zck7a21,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/04zck7a21,Institute of Culture and Memory Studies,Child,Release +,,,Institute of Ethnomusicology,https://ror.org/04ybswa04,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/04ybswa04,Institute of Ethnomusicology,Child,Release +,,,Institute of Philosophy,https://ror.org/02vt3a358,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/02vt3a358,Institute of Philosophy,Child,Release +,,,Institute of Slovenian Ethnology,https://ror.org/031d6d035,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/031d6d035,Institute of Slovenian Ethnology,Child,Release +,,,Institute of Slovenian Literature and Literary Studies,https://ror.org/04wgnd003,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/04wgnd003,Institute of Slovenian Literature and Literary Studies,Child,Release +,,,Jovan Hadži Institute of Biology,https://ror.org/03ppt4w11,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/03ppt4w11,Jovan Hadži Institute of Biology,Child,Release +,,,Ivan Rakovec Institute of Palaeontology,https://ror.org/01y2yb643,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/01y2yb643,Ivan Rakovec Institute of Palaeontology,Child,Release +,,,Slovenian Migration Institute,https://ror.org/0503qew83,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/0503qew83,Slovenian Migration Institute,Child,Release +,,,Sociomedical Institute,https://ror.org/02wd6rd97,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/02wd6rd97,Sociomedical Institute,Child,Release +,,,France Stele Institute of Art History,https://ror.org/02qr0r046,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/02qr0r046,France Stele Institute of Art History,Child,Release +,,,Milko Kos Historical Institute,https://ror.org/01car3s57,https://ror.org/04zvj8c18,Research Centre of the Slovenian Academy of Sciences and Arts,Parent,Production +,,,Research Centre of the Slovenian Academy of Sciences and Arts,https://ror.org/04zvj8c18,https://ror.org/01car3s57,Milko Kos Historical Institute,Child,Release From 3fcacfa77f2b737cb39cefa4794252722f5e18b3 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 5 Apr 2023 09:16:10 -0500 Subject: [PATCH 48/49] fix validation suite ref --- .github/workflows/validate.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index f24050f59..92cef6644 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -29,9 +29,7 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite - ref: check-duplicate-relationshios path: validation-suite - ref: dev - name: Get directory name if: "${{ github.event.inputs.directory-name != '' }}" run: echo "WORKING_DIR=${{ github.event.inputs.directory-name }}" >> $GITHUB_ENV From f3f337c87fdb2dbf0a635c6c25fa1c0255b82252 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 5 Apr 2023 09:20:49 -0500 Subject: [PATCH 49/49] fix validation suite ref --- .github/workflows/dev_manual_index.yml | 1 - .github/workflows/dev_pull_request.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/dev_manual_index.yml b/.github/workflows/dev_manual_index.yml index db521683f..7055d6459 100644 --- a/.github/workflows/dev_manual_index.yml +++ b/.github/workflows/dev_manual_index.yml @@ -49,7 +49,6 @@ jobs: with: repository: ror-community/validation-suite path: validation-suite - ref: dev - name: Validate files id: validatefiles run: | diff --git a/.github/workflows/dev_pull_request.yml b/.github/workflows/dev_pull_request.yml index 5613879d3..108255d2a 100644 --- a/.github/workflows/dev_pull_request.yml +++ b/.github/workflows/dev_pull_request.yml @@ -50,7 +50,6 @@ jobs: with: repository: ror-community/validation-suite path: validation-suite - ref: dev - name: Validate files id: validatefiles run: |